import { default as React, FunctionComponent, ReactNode } from 'react'; import { default as CheckboxGroup } from '../checkboxgroup'; 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 & Omit, 'onChange'>> & { Group: typeof CheckboxGroup; };