import type { SdkProvider } from '../../api/aws-auth/private'; import { type ICloudAssemblySource } from '../../api/cloud-assembly'; import { StackAssembly } from '../../api/cloud-assembly/private'; import type { IoHelper } from '../../api/io/private'; import type { PluginHost } from '../../api/plugin'; /** * Helper struct to pass internal services around. */ export interface ToolkitServices { sdkProvider: SdkProvider; ioHelper: IoHelper; pluginHost: PluginHost; } /** * Creates a Toolkit internal CloudAssembly from a CloudAssemblySource. * * The caller assumes ownership of the returned `StackAssembly`, and `dispose()` * should be called on this object after use. * * @param assemblySource - the source for the cloud assembly * @param cache - if the assembly should be cached, default: `true` * @returns the CloudAssembly object */ export declare function assemblyFromSource(ioHelper: IoHelper, assemblySource: ICloudAssemblySource, cache?: boolean): Promise; //# sourceMappingURL=index.d.ts.map