import { default as React } from 'react'; export interface TableRowProps { children: React.ReactNode; onRowClick?: () => void; } declare const Row: ({ children, onRowClick }: TableRowProps) => React.JSX.Element; export default Row; //# sourceMappingURL=Row.d.ts.map