import { type SelectOption } from './Select.svelte'; type $$ComponentProps = { example?: 'default' | 'nested' | 'searchable'; label?: string; placeholder?: string; options?: SelectOption[]; value?: string; status?: 'default' | 'error' | 'success' | 'warning'; helperText?: string; disabled?: boolean; required?: boolean; searchable?: boolean; flyToSelected?: boolean; size?: 'sm' | 'md' | 'lg'; }; declare const SelectStory: import("svelte").Component<$$ComponentProps, {}, "">; type SelectStory = ReturnType; export default SelectStory;