import { Construct } from 'constructs';
import * as ec2 from 'aws-cdk-lib/aws-ec2';
import * as cdk from 'aws-cdk-lib';
interface EndpointConfig {
    vpc: string | ec2.IVpc;
    service: string[];
    az?: string[];
}
export declare class Endpoints extends cdk.Stack {
    constructor(scope: Construct, id: string, config: EndpointConfig, props?: cdk.StackProps);
}
export {};
