import React from 'react'; export interface TableRowProps { /** Child element(s) */ children?: React.ReactNode | React.ReactNode[]; /** Indicates if it's the header row */ header?: boolean; /** The row click event callback. Returns the unique key of the row */ onClick?: (name?: string) => void; /** The unique row identifier */ name?: string; /** Is row empty */ empty?: boolean; } /** Contains the tr elements */ declare const TableRow: ({ children, header, name, onClick, ...other }: TableRowProps) => JSX.Element; export default TableRow;