File size: 553 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
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 {};
|