export interface SortOption { value: string; label: string; } export declare const DEFAULT_SORT_OPTIONS: SortOption[]; interface SortSelectProps { value?: string; options?: SortOption[]; label?: string; placeholder?: string; size?: 'sm' | 'md' | 'lg'; disabled?: boolean; class?: string; onchange?: (value: string) => void; } declare const SortSelect: import("svelte").Component; type SortSelect = ReturnType; export default SortSelect;