import type { ReactNode } from 'react'; import type { DefaultProps, LabelRequired } from '../../types'; import type { MergeRight } from '../../utilities'; import { type InputProps } from '../input/input'; export type CheckboxProps = MergeRight, { /** * Optional aria-label */ 'aria-label'?: string; /** * Checkbox label */ label?: ReactNode; /** * Description for field */ description?: ReactNode; /** * Value of the `input` element */ value?: InputProps['value']; /** * Error message for field */ error?: ReactNode; } & LabelRequired>; /** * Checkbox used to select multiple options. * * @example * */ export declare const Checkbox: import("react").ForwardRefExoticComponent>; //# sourceMappingURL=checkbox.d.ts.map