import { default as React } from 'react'; import { CheckboxProps } from '../../atoms/Checkbox'; export interface CheckboxFieldProps extends CheckboxProps { /** * The text displayed to identify the input checkbox. */ label: string; /** * The error message is displayed when an error occurs. */ error?: string; /** * Control the vertical alignment of the checkbox in relation to the label (center, top, bottom). */ alignment?: 'center' | 'top' | 'bottom'; } declare const CheckboxField: React.ForwardRefExoticComponent>; export default CheckboxField; //# sourceMappingURL=CheckboxField.d.ts.map