import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Resource Type definition for AWS::OpenSearchServerless::CollectionGroup
 */
export declare function getCollectionGroup(args: GetCollectionGroupArgs, opts?: pulumi.InvokeOptions): Promise<GetCollectionGroupResult>;
export interface GetCollectionGroupArgs {
    /**
     * The unique identifier of the collection group.
     */
    id: string;
}
export interface GetCollectionGroupResult {
    /**
     * The Amazon Resource Name (ARN) of the collection group.
     */
    readonly arn?: string;
    readonly capacityLimits?: outputs.opensearchserverless.CollectionGroupCapacityLimits;
    /**
     * The description of the collection group.
     */
    readonly description?: string;
    /**
     * The unique identifier of the collection group.
     */
    readonly id?: string;
    /**
     * An array of key-value pairs to apply to this resource.
     */
    readonly tags?: outputs.Tag[];
}
/**
 * Resource Type definition for AWS::OpenSearchServerless::CollectionGroup
 */
export declare function getCollectionGroupOutput(args: GetCollectionGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetCollectionGroupResult>;
export interface GetCollectionGroupOutputArgs {
    /**
     * The unique identifier of the collection group.
     */
    id: pulumi.Input<string>;
}
