import type * as greengrassv2 from "@distilled.cloud/aws/greengrassv2"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; /** * Runtime binding for `greengrass:ListComponents`. * * Enumerates the account's component definitions (latest version of each), * optionally scoped to `PRIVATE` or `PUBLIC` components — the entry point * for fleet-software inventory tooling. Provide the implementation with * `Effect.provide(AWS.GreengrassV2.ListComponentsHttp)`. * ### Reading Components * **Example:** List Private Components * ```typescript * // init — account-level binding, no resource argument * const listComponents = yield* AWS.GreengrassV2.ListComponents(); * * // runtime * const { components } = yield* listComponents({ scope: "PRIVATE" }); * ``` * * @binding */ export interface ListComponents extends Binding.Service Effect.Effect<(request?: greengrassv2.ListComponentsRequest) => Effect.Effect>> { } export declare const ListComponents: ListComponents; //# sourceMappingURL=ListComponents.d.ts.map