import { CompilerOptions, Node, TransformationResult, TransformerFactory } from "./_namespaces/ts.js"; /** * Transform one or more nodes using the supplied transformers. * @param source A single `Node` or an array of `Node` objects. * @param transformers An array of `TransformerFactory` callbacks used to process the transformation. * @param compilerOptions Optional compiler options. */ export declare function transform(source: T | T[], transformers: TransformerFactory[], compilerOptions?: CompilerOptions): TransformationResult; //# sourceMappingURL=transform.d.ts.map