import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/** @deprecated volcengine.nlb.ServerGroupAttributes has been deprecated in favor of volcengine.nlb.getServerGroupAttributes */
export declare function serverGroupAttributes(args: ServerGroupAttributesArgs, opts?: pulumi.InvokeOptions): Promise<ServerGroupAttributesResult>;
/**
 * A collection of arguments for invoking ServerGroupAttributes.
 */
export interface ServerGroupAttributesArgs {
    outputFile?: string;
    serverGroupId: string;
}
/**
 * A collection of values returned by ServerGroupAttributes.
 */
export interface ServerGroupAttributesResult {
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    readonly outputFile?: string;
    readonly serverGroupAttributes: outputs.nlb.ServerGroupAttributesServerGroupAttribute[];
    readonly serverGroupId: string;
    readonly totalCount: number;
}
/** @deprecated volcengine.nlb.ServerGroupAttributes has been deprecated in favor of volcengine.nlb.getServerGroupAttributes */
export declare function serverGroupAttributesOutput(args: ServerGroupAttributesOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<ServerGroupAttributesResult>;
/**
 * A collection of arguments for invoking ServerGroupAttributes.
 */
export interface ServerGroupAttributesOutputArgs {
    outputFile?: pulumi.Input<string>;
    serverGroupId: pulumi.Input<string>;
}
