import type { ButtonProps } from "element-plus"; declare namespace EctButtonImpl { /** * 类型 */ type EctButtonType = "" | "success" | "warning" | "info" | "primary" | "danger"; /** * 尺寸 */ type EctButtonSize = "" | "default" | "small" | "large"; /** * 导出属性 */ interface EctButtonProps extends ButtonProps { type: EctButtonType; plain: boolean; round: boolean; circle: boolean; disabled: boolean; loading: boolean; size: EctButtonSize; } } export default EctButtonImpl; //# sourceMappingURL=EctButton.d.ts.map