import React from 'react'; export interface CheckboxProps extends React.InputHTMLAttributes { /** * The label text for the checkbox */ label?: string; /** * Helper text displayed below the checkbox */ helperText?: string; /** * Whether the checkbox is indeterminate */ isIndeterminate?: boolean; } /** * Checkbox component with label support * * @example * ```tsx * * * ``` */ export declare const Checkbox: React.ForwardRefExoticComponent>; //# sourceMappingURL=Checkbox.d.ts.map