import * as React from 'react'; import IReactComponentProps from '../../../common/structures/IReactComponentProps'; import { FunctionGeneric } from '../../../common/structures/Generics'; interface IProps extends IReactComponentProps { checked?: boolean; disabled?: boolean; flat?: boolean; label?: string; name?: string; noValue?: boolean; onChange?: FunctionGeneric; tiny?: boolean; } declare const Switch: { (props: IProps): React.JSX.Element; defaultProps: { checked: boolean; }; }; export default Switch; //# sourceMappingURL=Switch.d.ts.map