import type { PropType } from 'vue';
export type IntroductionBackground = 'filled' | 'transparent';
export type IntroductionAlign = 'left' | 'center' | 'right';
export declare const props: {
    logoImg: {
        type: StringConstructor;
        default: string;
    };
    logoWidth: {
        type: (StringConstructor | NumberConstructor)[];
        default: string;
    };
    logoHeight: {
        type: (StringConstructor | NumberConstructor)[];
        default: string;
    };
    title: {
        type: StringConstructor;
        default: string;
    };
    subTitle: {
        type: StringConstructor;
        default: string;
    };
    description: {
        type: PropType<string[]>;
        default: () => never[];
    };
    background: {
        type: PropType<IntroductionBackground>;
        default: string;
    };
    align: {
        type: PropType<IntroductionAlign>;
        default: string;
    };
};
