import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Resource Type definition for AWS::DirectConnect::Lag
 */
export declare function getLag(args: GetLagArgs, opts?: pulumi.InvokeOptions): Promise<GetLagResult>;
export interface GetLagArgs {
    /**
     * The ARN of the LAG.
     */
    lagArn: string;
}
export interface GetLagResult {
    /**
     * The ARN of the LAG.
     */
    readonly lagArn?: string;
    /**
     * The ID of the LAG.
     */
    readonly lagId?: string;
    /**
     * The name of the LAG.
     */
    readonly lagName?: string;
    /**
     * The state of the LAG.
     */
    readonly lagState?: string;
    /**
     * The minimum number of physical dedicated connections that must be operational for the LAG itself to be operational.
     */
    readonly minimumLinks?: number;
    /**
     * The tags associated with the LAG.
     */
    readonly tags?: outputs.Tag[];
}
/**
 * Resource Type definition for AWS::DirectConnect::Lag
 */
export declare function getLagOutput(args: GetLagOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetLagResult>;
export interface GetLagOutputArgs {
    /**
     * The ARN of the LAG.
     */
    lagArn: pulumi.Input<string>;
}
