export interface TemplatePromptVariables { exampleTemplate: string; } /** * Generate the LLM prompt for template creation wizard */ export declare function generateTemplateWizardPrompt(variables: TemplatePromptVariables): string;