import React from 'react';
import { SortOption } from '../../core/types';
export type CatalogSortButtonProps = {
    onSortChange: (sortOption: SortOption | null) => void;
    currentSort?: SortOption | null;
};
export declare function CatalogSortButton({ onSortChange, currentSort, }: {
    onSortChange: (sortOption: SortOption | null) => void;
    currentSort?: SortOption | null;
}): React.JSX.Element;
