import React, { ChangeEventHandler, FocusEventHandler, ReactNode } from 'react';
interface SwitchProps {
    checked?: boolean;
    type?: string;
    id: string;
    label?: ReactNode;
    error?: string;
    onBlur?: FocusEventHandler<HTMLInputElement>;
    onChange?: ChangeEventHandler<HTMLInputElement>;
    onFocus?: FocusEventHandler<HTMLInputElement>;
    value?: string;
    secondary?: boolean;
    disabled?: boolean;
}
declare const Switch: (props: SwitchProps) => React.JSX.Element;
export default Switch;
