import * as React from 'react'; export type ToggleSwitchBackgroundColor = 'white' | 'grey'; export interface ToggleSwitchProps { active?: 'left' | 'right'; backgroundColor?: ToggleSwitchBackgroundColor; className?: string; leftLabel?: string; rightLabel?: string; leftOnClickHandler?: () => void; rightOnClickHandler?: () => void; } export const ToggleSwitch: React.FC; export default ToggleSwitch;