export type IdInput = Readonly<{ prefix?: string; suffix?: string; }>; /** * Builds a resource ID from prefix, identifier, suffix, and version segments. * Throws if the result exceeds 65 characters. */ export declare const id: (deps: { version?: string; input: IdInput; }) => (identifier: string) => string; export type StackAccount = Readonly<{ accountId: string; region: string; }>; /** Reads `CDK_DEFAULT_ACCOUNT` and `CDK_DEFAULT_REGION` from the environment. */ export declare const getStackAccountFromEnv: () => StackAccount; //# sourceMappingURL=core.d.ts.map