import type { SelectOption } from './types.js'; interface Props { options: SelectOption[]; defaultText?: string; dropdownWidth?: string; dropdownHeight?: string; selected?: string | null; } declare const SelectWithFooterStory: import("svelte").Component; type SelectWithFooterStory = ReturnType; export default SelectWithFooterStory;