export declare function ToggleVisibility({ invert, hasCheckValue, ...props }: {
    switchId: string;
    unregisterNameList: string[];
    invert?: boolean;
    hasCheckValue: boolean;
}): JSX.Element;
export declare function SwitchWatch({ invert, checkValue, ...props }: {
    children: JSX.Element | JSX.Element[];
    switchId: string;
    unregisterNameList: string[];
    invert?: boolean;
    checkValue?: string | number;
}): JSX.Element;
