import { FC } from 'react';
import { ICheckboxProps as ICheckboxTouchPhoneProps } from '../Checkbox@touch-phone';
export * from '../Checkbox@touch-phone';
export interface ICheckboxProps extends ICheckboxTouchPhoneProps {
    lines?: 'multi' | 'one';
    size?: 'm' | 's';
    theme?: 'normal' | 'pseudo';
    view?: 'default';
    indeterminate?: boolean;
}
export declare const Checkbox: FC<ICheckboxProps>;
