/// interface ToggleSwitchProps { backgroundColor?: string; selectedColor?: string; buttonColor?: string; zIndex?: string; borderRadius?: string; disabled?: boolean; width?: string; height?: string; tooltip?: string; callBack?: (status: any) => void; } declare function ToggleSwitch({ backgroundColor, buttonColor, selectedColor, borderRadius, disabled, width, height, zIndex, tooltip, callBack, }: ToggleSwitchProps): JSX.Element; export default ToggleSwitch;