import * as Effect from "effect/Effect"; /** * Shared HTTP scaffolding for the Service Quotas runtime bindings. * * NOT exported from `index.ts` — every `{Op}Http.ts` in this service is a * thin `Layer.effect(Cap, makeServiceQuotasHttpBinding({ … }))` over the * builder below. Everything except the operation and the IAM action is * boilerplate. * * Service Quotas is a control-plane query service: none of its actions * support resource-level IAM in a way a deploy-time binding could scope * (quota codes are supplied at runtime), so every grant is on * `Resource: ["*"]` and every binding is account-level (takes no resource). */ export declare const makeServiceQuotasHttpBinding: (options: { /** * Short capability name used in the binding sid and runtime span, e.g. * `"GetServiceQuota"`. */ capability: string; /** IAM actions granted on `Resource: ["*"]`. */ iamActions: readonly string[]; /** The distilled operation implementing the capability. */ operation: Effect.Effect<(input: I) => Effect.Effect, never, R>; }) => Effect.Effect<() => Effect.Effect<(request?: I | undefined) => Effect.Effect, never, never>, never, R>; //# sourceMappingURL=BindingHttp.d.ts.map