import { CustomTransformerFactory } from 'typescript';
export interface ModuleAliasTypescriptTransformerOptions {
    /** 项目根目录 */
    root?: string;
    /** 模块别名 */
    alias?: Record<string, string>;
}
/**
 * 模块别名插件
 *
 * 仅用于 afterDeclarations 阶段（只修改定义，不修改JS代码）
 */
export declare function createModuleAliasTypescriptTransformer(options: ModuleAliasTypescriptTransformerOptions): CustomTransformerFactory;
