import * as React from 'react'; declare type SwitcherInputProps = { id?: string; disabled?: boolean; name?: string; checked?: boolean; handleChange?: (...args: any[]) => any; }; export declare const SwitcherInput: React.SFC; export {};