import { IBaseProps } from '../_util/base';
export interface IWelcomeProps extends IBaseProps {
    className?: string;
    /**
     * @description 样式
     */
    styles?: string;
    /**
     * @description 标题
     */
    title: string;
    /**
     * @description 描述
     */
    description: string;
    onTap?: (e: any) => void;
}
export declare const WelcomeProps: Partial<IWelcomeProps>;
