import { default as React } from 'react'; import { FieldWidgetComponentProps } from './types.js'; /** * BooleanField - Toggle input supporting switch and checkbox variants * Renders as Switch or Checkbox based on field widget configuration */ export declare function BooleanField({ value, onChange, field, readonly, ...props }: FieldWidgetComponentProps): React.JSX.Element;