/** * FormLabel component - Label for form fields with error styling. * Automatically connects to the field via context. * * @example * ```svelte * Email Address * ``` */ interface Props { /** * Optional class name */ class?: string; /** * Label text */ children?: import('svelte').Snippet; } declare const FormLabel: import("svelte").Component; type FormLabel = ReturnType; export default FormLabel; //# sourceMappingURL=FormLabel.svelte.d.ts.map