import { ReactElement } from 'react'; import { FieldComponentProps } from '@cezembre/forms'; export interface ToggleProps extends FieldComponentProps { label?: string; instructions?: string; } export declare function Toggle({ value, error, warning, isActive, onFocus, name, onChange, onBlur, label, instructions, }: ToggleProps): ReactElement;