import { FC } from 'react'; interface SwitchProps { active: boolean; onClick: () => any; className?: string; label: string; } declare const Switch: FC; export default Switch;