import { UIComponent } from './component' /** Form Component */ export declare class componentButton extends UIComponent { /** * 文本名称 */ text:string /** * 样式类型 * @value primary | success | warning */ type:string /** * 是否朴素按钮 */ plain:boolean /** * 是否铺满宽度 */ full:boolean }