import type { Snippet } from 'svelte'; type $$ComponentProps = { children?: Snippet | string; for?: string; class?: string; [key: string]: any; }; declare const Label: import("svelte").Component<$$ComponentProps, {}, "">; type Label = ReturnType; export default Label;