import React from 'react'; import { CSS } from '../theme/stitches.config'; import { GridNode } from '@react-types/grid'; import { TableState } from '@react-stately/table'; interface Props { item: GridNode; state: TableState; as?: keyof JSX.IntrinsicElements; } declare type NativeAttrs = Omit, keyof Props>; export declare type TableRowProps = Props & NativeAttrs & { css?: CSS; }; declare const TableRow: React.ForwardRefExoticComponent & NativeAttrs & { css?: CSS | undefined; } & { children?: React.ReactNode; } & React.RefAttributes>; export default TableRow;