import * as React from 'react'; import { StandardProps, RegularAttributes, ForceAdd } from '../@types/common'; export declare type ButtonType = 'default' | 'primary' | 'secondary' | 'success' | 'warning' | 'danger' | 'link'; export declare type ButtonShape = 'default' | 'circle' | 'round'; /** * @title Button */ export interface OriginButtonProps extends StandardProps { /** * @en The content inside the button, can be a text icon, etc. * @cn 按钮里面的内容, 可以是文字图标等 */ children?: React.ReactNode; /** * @en Specifies the button should be disabled * @cn 禁用 * @default false */ disabled?: boolean; /** * @en If the href attribute is set, <a> will be used instead of <button>. * @cn 如果设置了 href 属性,将会用 代替