import { NestedStack, NestedStackProps } from 'aws-cdk-lib';
import { Construct } from 'constructs';
import { RestApi } from 'aws-cdk-lib/aws-apigateway';
export declare class ExampleAPIGatewayStack extends NestedStack {
    readonly restAPI: RestApi;
    constructor(scope: Construct, id: string, props?: NestedStackProps);
}
