type TemplateType = 'custom_index' | 'custom_detail' | 'static_page';
/**
* Validates an HTML template for correct CMS token usage
*
* @param html - The HTML template content
* @param templateType - The type of template (custom_index, custom_detail, static_page)
* @param collectionSlug - For custom collections, the collection slug
* @param projectId - Optional: Project ID or name to validate against actual schema
*/
export declare function validateTemplate(html: string, templateType: TemplateType, collectionSlug?: string, projectId?: string): Promise<string>;
export {};
//# sourceMappingURL=validate-template.d.ts.map