export default ToggleSwitch;
/** toggle switch */
declare class ToggleSwitch extends React.PureComponent<any, any, any> {
    static displayName: string;
    static defaultProps: {
        skin: string;
        size: string;
    };
    constructor(props: any);
    constructor(props: any, context: any);
    render(): React.JSX.Element;
}
import React from 'react';
//# sourceMappingURL=ToggleSwitch.d.ts.map