import { Diagnostic } from "../core/types.js"; import { TypeSpecConfig } from "./types.js"; export interface ExpandConfigOptions { readonly cwd: string; readonly outputDir?: string; readonly env?: Record; readonly args?: Record; } export declare function expandConfigVariables(config: TypeSpecConfig, expandOptions: ExpandConfigOptions): [TypeSpecConfig, readonly Diagnostic[]]; export declare function resolveValues>(values: T, predefinedVariables?: Record>): [T, readonly Diagnostic[]]; //# sourceMappingURL=config-interpolation.d.ts.map