import { ReactElement } from 'react'; import { CheckboxGroupProps } from './CheckboxGroup'; export interface CheckAllProps { /** * The checkbox group to control. */ children: ReactElement; /** * Whether the check all checkbox is disabled. * @default false */ disabled?: boolean; /** * The label text for the check all checkbox. */ label?: string; } /** * The react component for `mezzanine` check all. * Wraps a CheckboxGroup and provides a "check all" checkbox that controls all checkboxes in the group. */ declare const CheckAll: import("react").ForwardRefExoticComponent>; export default CheckAll;