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