import type { ComponentContext, ComponentConfig } from '../types.js'; export interface File { filePath: string; absolutePath: string; ext: string; dest?: string; code?: string; map?: string; } export default function runTransform(cfg: ComponentConfig, ctx: ComponentContext): Promise;