import { CSSInterpolation } from '@emotion/serialize/types'; import { TableProps } from 'antd'; export type HighlightRowTableProps = { sx?: CSSInterpolation; defaultCurrent?: number; defaultRow?: number; defaultSelectFirst?: boolean; onRowClick?: (record: T, index?: number) => void; } & TableProps; declare function HighlightRowTable(props: HighlightRowTableProps): import("@emotion/react/types/jsx-namespace").EmotionJSX.Element; export default HighlightRowTable;