Graduation
/
ui
/node_modules
/bits-ui
/dist
/bits
/combobox
/components
/combobox-label.svelte.d.ts
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 {}; | |