import { SwitchProps } from './switch'; import { FieldValues, Path } from 'react-hook-form'; export interface ControlledSwitchProps extends Omit { name: Path; } export declare const ControlledSwitch: { ({ name, ...props }: ControlledSwitchProps): import("react/jsx-runtime").JSX.Element; displayName: string; };