import { type Environment } from '@aws-cdk/cloud-assembly-api'; import type { Branded } from '../../util'; import type { SdkProvider } from '../aws-auth/private'; /** * Replace the {ACCOUNT} and {REGION} placeholders in all strings found in a complex object. */ export declare function replaceEnvPlaceholders>(object: A, env: Environment, sdkProvider: SdkProvider): Promise<{ [k in keyof A]: StringWithoutPlaceholders | undefined; }>; export type StringWithoutPlaceholders = Branded; //# sourceMappingURL=placeholders.d.ts.map