import React from 'react'; import './SwitchButton.scss'; import { FunctionTypeVoidToVoid } from '../../../../../CommonTypes/BaseViewModel'; type SwitchButtonProps = { disabled?: boolean; styleBox?: React.CSSProperties; clickHandler?: FunctionTypeVoidToVoid; touchHandler?: FunctionTypeVoidToVoid; }; declare const SwitchButton: ({ disabled, styleBox, clickHandler, touchHandler, }: SwitchButtonProps) => import("react/jsx-runtime").JSX.Element; export default SwitchButton; //# sourceMappingURL=SwitchButton.d.ts.map