import { ResourceBase } from "../../resource";
import { Value, List } from "../../data-types";
export interface VPCEndpointConnectionNotificationProperties {
    ConnectionEvents: List<Value<string>>;
    VPCEndpointId?: Value<string>;
    ServiceId?: Value<string>;
    ConnectionNotificationArn: Value<string>;
}
export default class Inner_VPCEndpointConnectionNotification extends ResourceBase<VPCEndpointConnectionNotificationProperties> {
    constructor(properties: VPCEndpointConnectionNotificationProperties);
}
