import type * as licensemanager from "@distilled.cloud/aws/license-manager"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; /** * Request for {@link AcceptGrant}. */ export interface AcceptGrantRequest extends licensemanager.AcceptGrantRequest { } /** * Runtime binding for `license-manager:AcceptGrant` — accept a license * grant that another account distributed to this account, activating the * granted entitlements. * * Provide the implementation with * `Effect.provide(AWS.LicenseManager.AcceptGrantHttp)`. * ### Managing Grants * **Example:** Accept a Received Grant * ```typescript * // init * const acceptGrant = yield* AWS.LicenseManager.AcceptGrant(); * * // runtime * const { Status } = yield* acceptGrant({ GrantArn: grantArn }); * ``` * * @binding */ export interface AcceptGrant extends Binding.Service Effect.Effect<(request: AcceptGrantRequest) => Effect.Effect>> { } export declare const AcceptGrant: AcceptGrant; //# sourceMappingURL=AcceptGrant.d.ts.map