@kya-os/cli
Version:
CLI for KYA-OS MCP-I setup and management
46 lines • 1.55 kB
TypeScript
/**
* Welcome Component
* Beautiful welcome messages using figlet and gradient-string
*/
/**
* Create a gradient welcome banner with custom ASCII art
*/
export declare function createWelcomeBanner(text?: string): Promise<string>;
/**
* Create a gradient welcome banner using figlet (classic version)
*/
export declare function createWelcomeBannerClassic(text?: string): Promise<string>;
/**
* Create a simple gradient text
*/
export declare function createGradientText(text: string, style?: "rainbow" | "cool" | "warm" | "pastel"): string;
/**
* Create a boxed message with gradient
*/
export declare function createGradientBox(content: string | string[], options?: {
title?: string;
borderColor?: string;
padding?: number;
gradientStyle?: "rainbow" | "cool" | "warm" | "pastel";
}): string;
/**
* Create a stylized error box
*/
export declare function createErrorBox(message: string, details?: string): string;
/**
* Create a stylized success box
*/
export declare function createSuccessBox(message: string, details?: string): string;
/**
* Create a stylized info box
*/
export declare function createInfoBox(message: string, details?: string): string;
/**
* Create a gradient text with KYA-OS themed colors
*/
export declare function createKYAGradientText(text: string, theme?: "dormant" | "active" | "verified" | "networked" | "sovereign"): string;
/**
* Create a cryptographic-themed welcome banner
*/
export declare function createCryptoWelcomeBanner(): Promise<string>;
//# sourceMappingURL=welcome.d.ts.map