import { Column } from './types'; declare type SortHeaderProps = { columns: Column[]; enableSort: boolean; sortColumn: string | null; sortDirection: 'asc' | 'desc'; onSort: (columnName: string) => void; styles: any; }; declare type SortIconProps = { isSorted: boolean; sortDirection: 'asc' | 'desc'; }; export declare function SortIcon({ isSorted, sortDirection }: SortIconProps): import("@emotion/react/jsx-runtime").JSX.Element; export declare function SortHeader({ columns, enableSort, sortColumn, sortDirection, onSort, styles }: SortHeaderProps): import("@emotion/react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=Sort.d.ts.map