import { Checkbox as CheckboxElement, Input } from '@judo/model-api'; export interface CheckboxComponentProps { element: CheckboxElement | Input; readOnly?: boolean; value?: boolean; onChange?: (value: boolean) => void; error?: string; disabled?: boolean; judoClassName?: string; } /** * Checkbox input component. * Matches template pattern: FormControl > FormGroup > FormControlLabel with marginTop and error coloring. */ export declare function CheckboxComponent({ element, readOnly, value, onChange, error, disabled, }: CheckboxComponentProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=CheckboxComponent.d.ts.map