import React from 'react'; import { ControllerProps } from 'react-hook-form'; export type SwitchControlProps = { name: string; label?: string; defaultValue?: boolean; formatValue?: (param: boolean) => string; disabled?: boolean; enableErrorMessage?: boolean; rules?: ControllerProps['rules'] | undefined; required?: boolean; type?: 'standard' | 'custom'; size?: 'medium' | 'small'; }; declare const SwitchControl: ({ name, label, formatValue, defaultValue, disabled, enableErrorMessage, rules, required, type, size, }: SwitchControlProps) => React.JSX.Element; export default SwitchControl; //# sourceMappingURL=SwitchControl.d.ts.map