import * as pulumi from "@pulumi/pulumi";
/**
 * Retrieves an organization. Use this data source to retrieve information for a specific organization.
 */
export declare function getOrganization(args: GetOrganizationArgs, opts?: pulumi.InvokeOptions): Promise<GetOrganizationResult>;
/**
 * A collection of arguments for invoking getOrganization.
 */
export interface GetOrganizationArgs {
    /**
     * The name of the organization.
     */
    name: string;
}
/**
 * A collection of values returned by getOrganization.
 */
export interface GetOrganizationResult {
    /**
     * Organization creation date.
     */
    readonly createdAt: string;
    /**
     * The description of the organization.
     */
    readonly description: string;
    /**
     * An organization ID.
     */
    readonly id: string;
    /**
     * The name of the organization.
     */
    readonly name: string;
    /**
     * Last Organization update date.
     */
    readonly updatedAt: string;
}
/**
 * Retrieves an organization. Use this data source to retrieve information for a specific organization.
 */
export declare function getOrganizationOutput(args: GetOrganizationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetOrganizationResult>;
/**
 * A collection of arguments for invoking getOrganization.
 */
export interface GetOrganizationOutputArgs {
    /**
     * The name of the organization.
     */
    name: pulumi.Input<string>;
}
