/** * Process a template string with variables */ export declare function processTemplate(templateContent: string, variables: Record): string; /** * Prepare template variables from workflow name and description */ export declare function prepareTemplateVariables(workflowName: string, description: string): Record; export { camelCase, pascalCase } from 'change-case';