/// import { CnBalloonProps } from '@alife/cn-ui/es/components/cn-balloon/index'; export interface ButtonProps { type?: 'normal' | 'primary' | 'secondary' | 'link' | 'error' | 'text'; text?: boolean; size?: 'small' | 'medium'; children?: React.ReactNode; hotkey?: string; hotkeyHandler?: () => void; className?: string; disabled?: boolean; loading?: boolean; onClick?: () => void; style?: object; balloon?: CnBalloonProps; fullWidth?: boolean; }