import React from 'react'; import './MainButton.css'; import { FunctionTypeVoidToVoid } from '../../../../../CommonTypes/BaseViewModel'; export declare const TypeButton: { readonly default: "default"; readonly danger: "danger"; readonly outlined: "outlined"; readonly text: "text"; readonly defaultDisabled: "defaultDisabled"; }; export type ButtonArcheType = keyof typeof TypeButton; type MainButtonProps = { title: string; typeButton?: ButtonArcheType; disabled?: boolean; styleBox?: React.CSSProperties; clickHandler?: FunctionTypeVoidToVoid; touchHandler?: FunctionTypeVoidToVoid; }; declare const MainButton: ({ title, typeButton, disabled, styleBox, clickHandler, touchHandler, }: MainButtonProps) => import("react/jsx-runtime").JSX.Element; export default MainButton; //# sourceMappingURL=MainButton.d.ts.map