import { CheckboxProps as DefaultCheckboxProps } from 'antd';
import React from 'react';
import { TypographyTextProps } from '../Typography';
type CondoCheckboxProps = {
    label?: string;
    labelProps?: TypographyTextProps;
};
export type CheckboxProps = Pick<DefaultCheckboxProps, 'autoFocus' | 'defaultChecked' | 'disabled' | 'onChange' | 'indeterminate' | 'checked' | 'children' | 'id' | 'className' | 'onMouseLeave' | 'onMouseEnter' | 'tabIndex' | 'value'> & CondoCheckboxProps;
declare const Checkbox: React.FC<CheckboxProps>;
export { Checkbox, };
//# sourceMappingURL=checkbox.d.ts.map