import * as pulumi from "@pulumi/pulumi";
/**
 * Information about the organization associated with the user's API key.
 */
export declare function getOrganization(opts?: pulumi.InvokeOptions): Promise<GetOrganizationResult>;
/**
 * A collection of values returned by getOrganization.
 */
export interface GetOrganizationResult {
    /**
     * Indicates when the organization was created.
     */
    readonly createdAt: string;
    /**
     * Organization ID.
     */
    readonly id: string;
    /**
     * A short ID used by CockroachDB Support.
     */
    readonly label: string;
    /**
     * Name of the organization.
     */
    readonly name: string;
}
/**
 * Information about the organization associated with the user's API key.
 */
export declare function getOrganizationOutput(opts?: pulumi.InvokeOptions): pulumi.Output<GetOrganizationResult>;
