import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Resource Type definition for AWS::ApplicationSignals::GroupingConfiguration
 */
export declare function getGroupingConfiguration(args: GetGroupingConfigurationArgs, opts?: pulumi.InvokeOptions): Promise<GetGroupingConfigurationResult>;
export interface GetGroupingConfigurationArgs {
    /**
     * The 12 digit AWS Account ID for the account.
     */
    accountId: string;
}
export interface GetGroupingConfigurationResult {
    /**
     * The 12 digit AWS Account ID for the account.
     */
    readonly accountId?: string;
    /**
     * An array of grouping attribute definitions that specify how services should be grouped based on various attributes and source keys.
     */
    readonly groupingAttributeDefinitions?: outputs.applicationsignals.GroupingConfigurationGroupingAttributeDefinition[];
    /**
     * The timestamp when this grouping configuration was last updated. When used in a raw HTTP Query API, it is formatted as epoch time in seconds.
     */
    readonly updatedAt?: string;
}
/**
 * Resource Type definition for AWS::ApplicationSignals::GroupingConfiguration
 */
export declare function getGroupingConfigurationOutput(args: GetGroupingConfigurationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetGroupingConfigurationResult>;
export interface GetGroupingConfigurationOutputArgs {
    /**
     * The 12 digit AWS Account ID for the account.
     */
    accountId: pulumi.Input<string>;
}
