import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Resource Type definition for LocalGatewayVirtualInterfaceGroup which describes a group of LocalGateway VirtualInterfaces
 */
export declare function getLocalGatewayVirtualInterfaceGroup(args: GetLocalGatewayVirtualInterfaceGroupArgs, opts?: pulumi.InvokeOptions): Promise<GetLocalGatewayVirtualInterfaceGroupResult>;
export interface GetLocalGatewayVirtualInterfaceGroupArgs {
    /**
     * The ID of the virtual interface group
     */
    localGatewayVirtualInterfaceGroupId: string;
}
export interface GetLocalGatewayVirtualInterfaceGroupResult {
    /**
     * The current state of the local gateway virtual interface group
     */
    readonly configurationState?: string;
    /**
     * The Amazon Resource Number (ARN) of the local gateway virtual interface group
     */
    readonly localGatewayVirtualInterfaceGroupArn?: string;
    /**
     * The ID of the virtual interface group
     */
    readonly localGatewayVirtualInterfaceGroupId?: string;
    /**
     * The IDs of the virtual interfaces
     */
    readonly localGatewayVirtualInterfaceIds?: string[];
    /**
     * The ID of the Amazon Web Services account that owns the local gateway virtual interface group
     */
    readonly ownerId?: string;
    /**
     * The tags assigned to the virtual interface group
     */
    readonly tags?: outputs.Tag[];
}
/**
 * Resource Type definition for LocalGatewayVirtualInterfaceGroup which describes a group of LocalGateway VirtualInterfaces
 */
export declare function getLocalGatewayVirtualInterfaceGroupOutput(args: GetLocalGatewayVirtualInterfaceGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetLocalGatewayVirtualInterfaceGroupResult>;
export interface GetLocalGatewayVirtualInterfaceGroupOutputArgs {
    /**
     * The ID of the virtual interface group
     */
    localGatewayVirtualInterfaceGroupId: pulumi.Input<string>;
}
