import type { EnhancedPageContent, InlineComponent, ImportStatement } from '../types.js';
interface PreviewTemplateProcessingResult {
    inlineComponents: InlineComponent[];
    imports: ImportStatement[];
    updatedContent: string;
}
/**
 * Process preview-template blocks and convert them to inline components
 */
export declare function processPreviewTemplates(page: EnhancedPageContent): PreviewTemplateProcessingResult;
export {};
//# sourceMappingURL=process-preview-templates.d.ts.map