import { SvelteComponent } from "svelte"; declare const __propDef: { props: { required?: boolean; /** The symbol shown when the `required` prop is set to true @default "*" */ requiredSymbol?: string; for?: string | undefined; }; events: { [evt: string]: CustomEvent; }; slots: { default: {}; }; }; export type LabelProps = typeof __propDef.props; export type LabelEvents = typeof __propDef.events; export type LabelSlots = typeof __propDef.slots; export default class Label extends SvelteComponent { } export {};