import * as pulumi from "@pulumi/pulumi";
import * as outputs from "./types/output";
/**
 * A IdentitySet defines a group of identity aliases.
 * ## Example Usage
 *
 * <!--Start PulumiCodeChooser -->
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as sdm from "@pierskarsenbarg/sdm";
 *
 * const _default = sdm.getIdentitySet({
 *     name: "default",
 * });
 * ```
 * <!--End PulumiCodeChooser -->
 */
export declare function getIdentitySet(args?: GetIdentitySetArgs, opts?: pulumi.InvokeOptions): Promise<GetIdentitySetResult>;
/**
 * A collection of arguments for invoking getIdentitySet.
 */
export interface GetIdentitySetArgs {
    /**
     * Unique identifier of the IdentitySet.
     */
    id?: string;
    /**
     * Unique human-readable name of the IdentitySet.
     */
    name?: string;
}
/**
 * A collection of values returned by getIdentitySet.
 */
export interface GetIdentitySetResult {
    /**
     * Unique identifier of the IdentitySet.
     */
    readonly id?: string;
    /**
     * A list where each element has the following attributes:
     */
    readonly identitySets: outputs.GetIdentitySetIdentitySet[];
    /**
     * a list of strings of ids of data sources that match the given arguments.
     */
    readonly ids: string[];
    /**
     * Unique human-readable name of the IdentitySet.
     */
    readonly name?: string;
}
/**
 * A IdentitySet defines a group of identity aliases.
 * ## Example Usage
 *
 * <!--Start PulumiCodeChooser -->
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as sdm from "@pierskarsenbarg/sdm";
 *
 * const _default = sdm.getIdentitySet({
 *     name: "default",
 * });
 * ```
 * <!--End PulumiCodeChooser -->
 */
export declare function getIdentitySetOutput(args?: GetIdentitySetOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetIdentitySetResult>;
/**
 * A collection of arguments for invoking getIdentitySet.
 */
export interface GetIdentitySetOutputArgs {
    /**
     * Unique identifier of the IdentitySet.
     */
    id?: pulumi.Input<string | undefined>;
    /**
     * Unique human-readable name of the IdentitySet.
     */
    name?: pulumi.Input<string | undefined>;
}
//# sourceMappingURL=getIdentitySet.d.ts.map