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'; interface Props { column: GridNode; state: TableState; color?: TableVariantsProps['color']; animated?: boolean; as?: keyof JSX.IntrinsicElements; } declare type NativeAttrs = Omit, keyof Props>; export declare type TableSelectAllCheckboxProps = Props & NativeAttrs & { css?: CSS; }; declare const TableSelectAllCheckbox: React.ForwardRefExoticComponent & NativeAttrs & { css?: CSS | undefined; } & React.RefAttributes>; export default TableSelectAllCheckbox;