import { SvelteComponent } from "svelte"; declare const __propDef: { props: { id?: string | undefined; label?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type InputLabelProps = typeof __propDef.props; export type InputLabelEvents = typeof __propDef.events; export type InputLabelSlots = typeof __propDef.slots; export default class InputLabel extends SvelteComponent { } export {};