import { CSSProperties, VNode } from 'vue';
export interface WelcomeProps {
    classNames?: Partial<Record<'icon' | 'title' | 'description' | 'extra', string>>;
    description?: string | number;
    extra?: string | number;
    icon?: string | VNode;
    rootClassName?: string;
    styles?: Partial<Record<'icon' | 'title' | 'description' | 'extra', CSSProperties>>;
    title?: string | number;
    variant?: 'filled' | 'borderless';
}
