declare const BRAND: {
    name: string;
    author: string;
    mascot: string;
};

declare const COLORS: {
    yellowGreen: string;
    spaceBlue: string;
    lovelyViolet: string;
    warn: string;
    error: string;
    gradient: string[];
};

declare const nouns: string[];
declare const adjectives: string[];
declare const welcome: string[];

declare function renderBrandingUI(title?: string): void;

export { BRAND, COLORS, adjectives, nouns, renderBrandingUI, welcome };
