import { default as React, FunctionComponent, ReactNode } from 'react';
import { default as CheckboxGroup } from '../checkboxgroup/index.taro';
import { BasicComponent } from '../../utils/typings';
import { CheckboxLabelPosition } from '../checkboxgroup/types';
export type CheckboxShape = 'button' | 'round';
export interface CheckboxProps extends BasicComponent {
    checked: boolean;
    disabled: boolean;
    defaultChecked: boolean;
    shape: CheckboxShape;
    labelPosition: CheckboxLabelPosition;
    icon: ReactNode;
    activeIcon: ReactNode;
    indeterminateIcon: ReactNode;
    value: string | number;
    indeterminate: boolean;
    label: ReactNode;
    onChange: (value: boolean) => void;
}
export declare const Checkbox: FunctionComponent<Partial<CheckboxProps> & Omit<React.HTMLAttributes<HTMLDivElement>, 'onChange'>> & {
    Group: typeof CheckboxGroup;
};
