import { FC, CSSProperties } from 'react'; export interface IFormikUiToggleProps { /** Sets the Name of the Toggle button */ name: string; /** Sets an Id for the Toggle button, if not passed, the id will be the name */ id?: string; /** Adds a custom class to the Toggle button */ className?: string; /** Adds a custom inline styles to the Toggle wrapper div */ style?: CSSProperties; /** Disables the Toggle button */ disabled?: boolean; } export declare const Toggle: FC; export default Toggle;