interface TransformContext {
    environmentName: string;
    clientFiles?: Set<string>;
    isEsbuild?: boolean;
    addClientModule?: (environment: string, id: string) => void;
}
interface TransformResult {
    code: string;
    map?: any;
}
export declare function transformClientComponents(code: string, normalizedId: string, ctx: TransformContext): Promise<TransformResult | undefined>;
export type { TransformContext, TransformResult };
