import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Resource Type definition for AWS Ground Station DataflowEndpointGroupV2
 */
export declare function getDataflowEndpointGroupV2(args: GetDataflowEndpointGroupV2Args, opts?: pulumi.InvokeOptions): Promise<GetDataflowEndpointGroupV2Result>;
export interface GetDataflowEndpointGroupV2Args {
    id: string;
}
export interface GetDataflowEndpointGroupV2Result {
    readonly arn?: string;
    /**
     * Information about the endpoint details.
     */
    readonly endpointDetails?: outputs.groundstation.DataflowEndpointGroupV2EndpointDetails[];
    readonly id?: string;
    /**
     * Tags assigned to a resource.
     */
    readonly tags?: outputs.Tag[];
}
/**
 * Resource Type definition for AWS Ground Station DataflowEndpointGroupV2
 */
export declare function getDataflowEndpointGroupV2Output(args: GetDataflowEndpointGroupV2OutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDataflowEndpointGroupV2Result>;
export interface GetDataflowEndpointGroupV2OutputArgs {
    id: pulumi.Input<string>;
}
