import * as React from 'react'; import "./style.css"; interface IProps { onChange?: (checked: boolean, e: React.MouseEvent) => void; style?: React.CSSProperties; className?: string; checked: boolean; checkedText?: string; unCheckedText?: string; } export declare function Switch(props: IProps): JSX.Element; export {};