DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
553 Bytes
import { SvelteComponent } from "svelte";
import type { LabelProps } from "../types.js";
declare const __propDef: {
props: LabelProps;
events: {
[evt: string]: CustomEvent<any>;
};
slots: {
default: {};
};
};
export type ComboboxLabelProps = typeof __propDef.props;
export type ComboboxLabelEvents = typeof __propDef.events;
export type ComboboxLabelSlots = typeof __propDef.slots;
export default class ComboboxLabel extends SvelteComponent<ComboboxLabelProps, ComboboxLabelEvents, ComboboxLabelSlots> {
}
export {};