import { ButtonProps } from '@befe/brick-comp-button'; type PropsFromButton = Omit; export interface ClearXProps extends PropsFromButton { /** * 自定义 class */ className?: string; /** * 尺寸 */ size?: 'xs' | 'sm' | 'md' | 'lg' | 'xl'; } export {};