import { ReactElement } from 'react'; export type SortOption = 'asc' | 'desc'; export interface SortSelectorProps { onChange: (sort: SortOption) => void; value?: SortOption; } export declare function SortSelector({ onChange, value }: SortSelectorProps): ReactElement; //# sourceMappingURL=SortSelector.d.ts.map