import { FC } from 'react'; import { WrappedFieldProps } from 'redux-form'; export interface SwitchFieldProps extends WrappedFieldProps { switchValue?: unknown; } declare const SwitchField: FC; export default SwitchField;