import { ResourceBase, ResourceTag as Inner_ResourceTag } from "../../resource";
import { Value, List } from "../../data-types";
export declare class Tags {
    Tags?: List<Inner_ResourceTag>;
    constructor(properties: Tags);
}
export interface LocalGatewayRouteTableVPCAssociationProperties {
    LocalGatewayRouteTableId: Value<string>;
    VpcId: Value<string>;
    Tags?: Tags;
}
export default class Inner_LocalGatewayRouteTableVPCAssociation extends ResourceBase<LocalGatewayRouteTableVPCAssociationProperties> {
    static Tags: typeof Tags;
    constructor(properties: LocalGatewayRouteTableVPCAssociationProperties);
}
