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