import React from 'react'; import { CSS } from '../theme/stitches.config'; import { GridNode } from '@react-types/grid'; import { TableState } from '@react-stately/table'; import { TableVariantsProps } from './table.styles'; declare type CellProps = GridNode & { parentKey?: React.Key; }; interface Props { cell: CellProps; state: TableState; color?: TableVariantsProps['color']; animated?: boolean; as?: keyof JSX.IntrinsicElements; } declare type NativeAttrs = Omit, keyof Props>; export declare type TableCheckboxCellProps = Props & NativeAttrs & { css?: CSS; }; declare const TableCheckboxCell: React.ForwardRefExoticComponent & NativeAttrs & { css?: CSS | undefined; } & React.RefAttributes>; export default TableCheckboxCell;