import { CSSProperties, MouseEvent } from 'react'; type SwitchProps = { checked: boolean; onChange?: (a: MouseEvent) => unknown; style?: CSSProperties; small?: boolean; disabled?: boolean; }; export default SwitchProps; //# sourceMappingURL=type.d.ts.map