DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
618 Bytes
import { SvelteComponent } from "svelte";
import type { ValueProps } from "../types.js";
declare const __propDef: {
props: ValueProps;
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {
label: string;
attrs: Record<string, string>;
};
};
};
export type SelectValueProps = typeof __propDef.props;
export type SelectValueEvents = typeof __propDef.events;
export type SelectValueSlots = typeof __propDef.slots;
export default class SelectValue extends SvelteComponent<SelectValueProps, SelectValueEvents, SelectValueSlots> {
}
export {};