/**
 * Loads and caches the logo image as terminal ASCII art.
 * This function ensures the image is only rendered once and cached for all subsequent uses.
 */
export declare function getLogoAscii(): Promise<string | null>;
/**
 * Gets the cached logo synchronously if available
 */
export declare function getLogoAsciiSync(): string | null;
