/** @jsxImportSource @emotion/react */ import type { HighlightEventSource } from '../../../highlight/index.js'; import type { BaseRowStyle, TableContextMenuProps } from '../ReactTable.js'; export interface ClickEvent { onClick?: (event: Event, data: unknown) => void; } interface ReactTableRowProps extends ClickEvent, TableContextMenuProps { row: any; highlightedSource?: HighlightEventSource; isRowActive: boolean; rowStyle: BaseRowStyle | undefined; disableDefaultRowStyle?: boolean; } declare function ReactTableRow(props: ReactTableRowProps): import("@emotion/react/jsx-runtime").JSX.Element; export default ReactTableRow; //# sourceMappingURL=ReactTableRow.d.ts.map