import * as React from 'react';
import type { HasRef, HasRootRef } from '../../../types';
import type { CellProps } from '../Cell';
export interface CellCheckboxProps extends Pick<CellProps, 'defaultChecked' | 'checked'>, React.InputHTMLAttributes<HTMLInputElement>, HasRootRef<HTMLSpanElement>, HasRef<HTMLInputElement> {
    /**
     * Вид чекбокса. Если auto, то зависит от платформы.
     */
    type?: 'auto' | 'circle' | 'square';
}
export declare const CellCheckbox: ({ getRootRef, getRef, className, style, type, ...restProps }: CellCheckboxProps) => React.ReactNode;
//# sourceMappingURL=CellCheckbox.d.ts.map