export interface PromptConfig { name: string; description?: string; template: string; variables: Array<{ name: string; type: string; required: boolean; default?: string; }>; version: string; environment: 'development' | 'staging' | 'production'; tags?: string[]; } export declare function createPromptCommand(): Promise; export declare function listPromptsCommand(): void; export declare function getPromptCommand(name: string): void; export declare function deletePromptCommand(name: string): Promise; export declare function renderPromptCommand(name: string): Promise; export declare function promotePromptCommand(name: string): Promise; export declare function versionPromptCommand(name: string): Promise; //# sourceMappingURL=prompts.d.ts.map