import { type ComponentProps } from 'react'; import { type DecoratorsType } from '../../hooks/useDecorators'; import { type Props as CheckboxProps } from '../Checkbox'; import { Th } from './Th'; type AbstractProps = { decorators?: DecoratorsType<'checkAllInvisibleLabel'> & { checkColumnName?: (text: string) => string; }; } & Pick, 'vAlign' | 'fixed'>; type Props = AbstractProps & Omit; export declare const ThCheckbox: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export {};