type $$ComponentProps = { label?: string; placeholder?: string; value?: string; type?: 'text' | 'email' | 'password' | 'number' | 'search' | 'tel' | 'url'; status?: 'default' | 'error' | 'success' | 'warning'; helperText?: string; errorMessage?: string; disabled?: boolean; required?: boolean; clearable?: boolean; size?: 'sm' | 'md' | 'lg'; }; declare const FormFieldStory: import("svelte").Component<$$ComponentProps, {}, "">; type FormFieldStory = ReturnType; export default FormFieldStory;