import React from "react"; import { ButtonProps } from "antd"; interface ButtonPropsI extends ButtonProps { secondary?: boolean | string; primary?: boolean | string; link?: boolean | string; text?: boolean | string; icon?: boolean | string; roles?: boolean | string; } type UpdatedButtonPropsI = ButtonPropsI & { cancelBtn?: boolean; }; export declare const Button: React.FC; export {};