import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
/**
 * Resource Type definition for LocalGatewayVirtualInterfaceGroup which describes a group of LocalGateway VirtualInterfaces
 */
export declare class LocalGatewayVirtualInterfaceGroup extends pulumi.CustomResource {
    /**
     * Get an existing LocalGatewayVirtualInterfaceGroup resource's state with the given name, ID, and optional extra
     * properties used to qualify the lookup.
     *
     * @param name The _unique_ name of the resulting resource.
     * @param id The _unique_ provider ID of the resource to lookup.
     * @param opts Optional settings to control the behavior of the CustomResource.
     */
    static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): LocalGatewayVirtualInterfaceGroup;
    /**
     * Returns true if the given object is an instance of LocalGatewayVirtualInterfaceGroup.  This is designed to work even
     * when multiple copies of the Pulumi SDK have been loaded into the same process.
     */
    static isInstance(obj: any): obj is LocalGatewayVirtualInterfaceGroup;
    /**
     * The current state of the local gateway virtual interface group
     */
    readonly configurationState: pulumi.Output<string>;
    /**
     * The Autonomous System Number(ASN) for the local Border Gateway Protocol (BGP)
     */
    readonly localBgpAsn: pulumi.Output<number | undefined>;
    /**
     * The extended 32-bit ASN for the local BGP configuration
     */
    readonly localBgpAsnExtended: pulumi.Output<number | undefined>;
    /**
     * The ID of the local gateway
     */
    readonly localGatewayId: pulumi.Output<string>;
    /**
     * The Amazon Resource Number (ARN) of the local gateway virtual interface group
     */
    readonly localGatewayVirtualInterfaceGroupArn: pulumi.Output<string>;
    /**
     * The ID of the virtual interface group
     */
    readonly localGatewayVirtualInterfaceGroupId: pulumi.Output<string>;
    /**
     * The IDs of the virtual interfaces
     */
    readonly localGatewayVirtualInterfaceIds: pulumi.Output<string[]>;
    /**
     * The ID of the Amazon Web Services account that owns the local gateway virtual interface group
     */
    readonly ownerId: pulumi.Output<string>;
    /**
     * The tags assigned to the virtual interface group
     */
    readonly tags: pulumi.Output<outputs.Tag[] | undefined>;
    /**
     * Create a LocalGatewayVirtualInterfaceGroup resource with the given unique name, arguments, and options.
     *
     * @param name The _unique_ name of the resource.
     * @param args The arguments to use to populate this resource's properties.
     * @param opts A bag of options that control this resource's behavior.
     */
    constructor(name: string, args: LocalGatewayVirtualInterfaceGroupArgs, opts?: pulumi.CustomResourceOptions);
}
/**
 * The set of arguments for constructing a LocalGatewayVirtualInterfaceGroup resource.
 */
export interface LocalGatewayVirtualInterfaceGroupArgs {
    /**
     * The Autonomous System Number(ASN) for the local Border Gateway Protocol (BGP)
     */
    localBgpAsn?: pulumi.Input<number>;
    /**
     * The extended 32-bit ASN for the local BGP configuration
     */
    localBgpAsnExtended?: pulumi.Input<number>;
    /**
     * The ID of the local gateway
     */
    localGatewayId: pulumi.Input<string>;
    /**
     * The tags assigned to the virtual interface group
     */
    tags?: pulumi.Input<pulumi.Input<inputs.TagArgs>[]>;
}
