import type { AwsResourceCommon } from "../common";
import type { CloudFormationValue } from "../IntrinsicFunctions";
export declare type DeploymentType = 'AWS::ApiGatewayV2::Deployment';
export interface Deployment extends AwsResourceCommon {
    Type: DeploymentType;
    Properties: DeploymentProperties;
}
export interface DeploymentProperties {
    ApiId: CloudFormationValue;
    Description?: string;
    StageName?: CloudFormationValue;
}
