import * as React from "react"; export interface Props { value?: string; className?: string; label: string; hideLabel?: boolean; helperText?: string; errors?: string[]; id: string; inputRef?: any; required?: boolean; nativeRequired?: boolean; onChange?: (e: React.ChangeEvent) => void; } declare const Toggle: React.FC; export default Toggle;