import { SortDirection } from './types'; export interface TableSortIndicatorProps { isSorted: boolean; sortDirection: SortDirection; } export declare const TableSortIndicator: ({ isSorted, sortDirection }: TableSortIndicatorProps) => import("@emotion/react/jsx-runtime").JSX.Element;