import { ReactElement, ReactNode } from 'react'; import { FieldPath, FieldValues, Validate, ValidationRule } from 'react-hook-form'; export type PageFormSwitchProps = FieldPath> = { id?: string; name: TFieldName; label?: string; labelHelpTitle?: string; labelHelp?: string | string[] | ReactNode; isRequired?: boolean; additionalControls?: ReactElement; helperText?: string; pattern?: ValidationRule; validate?: Validate | Record>; autoFocus?: boolean; labelOn?: string; }; export declare function PageFormSwitch = FieldPath>(props: PageFormSwitchProps): import("react/jsx-runtime").JSX.Element;