/// import './index.scss'; export interface ColorfulButtonProps { /** * 类型 */ type?: 'primary' | 'secondary' | 'danger' | 'ghost'; /** * 超链接 */ link?: boolean; /** * 提交按钮 */ submit?: boolean; /** * 链接地址 */ href?: string; /** * 文本 */ text?: string; /** * 尺寸 */ size?: 'full' | 'md' | 'sm' | 'lg'; /** * 形状 */ shape?: 'round' | 'square' | 'circle'; /** * 禁用 */ disabled?: boolean; /** * 图标 */ icon?: string; /** * 图标位置 */ suffix?: 'none' | 'left' | 'right'; /** * 点击事件 */ onClick?: any; } declare const ColorfulButton: import("react").ForwardRefExoticComponent>; export default ColorfulButton;