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