import { CSSProperties } from 'vue'; export type SemanticType = 'title' | 'description' | 'icon' | 'extra'; export interface WelcomeProps { prefixCls?: string; rootClassName?: string; className?: string; style?: CSSProperties; variant?: 'filled' | 'borderless'; classNames?: Partial>; styles?: Partial>; icon?: string; title?: string; description?: string; extra?: string; direction?: 'ltr' | 'rtl'; }