import { Construct } from 'constructs'; import { Stack } from 'aws-cdk-lib'; export type AddApiStageToUsagePlanProps = Readonly<{ UsagePlanId: string; ApiId: string; Stage: string; }>; /** * Attaches an API stage to a usage plan via a custom resource SDK call. * Workaround for missing L2 construct support. * @see https://github.com/aws/aws-cdk/discussions/22944#discussioncomment-6793333 */ export declare const addApiStageToUsagePlan: (stack: Stack, name: string, props: AddApiStageToUsagePlanProps) => Construct; //# sourceMappingURL=usage-plan.d.ts.map