import * as Effect from "effect/Effect"; /** * Shared HTTP scaffolding for the geo-maps runtime bindings. * * NOT exported from `index.ts` — every `{Op}Http.ts` in this service is a * thin `Layer.effect(Cap, makeGeoMapsHttpBinding({ … }))` over the builder * below. Everything except the operation and the IAM action is boilerplate. * * geo-maps is a standalone, pay-per-call Amazon Location API with no * resource to manage: every capability takes no arguments, and per the * `geo-maps` service authorization reference all actions authorize through * the singleton `provider/default` pseudo-resource, so grants use * `Resource: ["*"]`. */ export declare const makeGeoMapsHttpBinding: (options: { /** * Short capability name used in the binding sid and runtime span, e.g. * `"GetStaticMap"`. */ 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) => Effect.Effect, never, never>, never, R>; //# sourceMappingURL=BindingHttp.d.ts.map