import * as pulumi from "@pulumi/pulumi";
export declare function getCloudOrganization(args?: GetCloudOrganizationArgs, opts?: pulumi.InvokeOptions): Promise<GetCloudOrganizationResult>;
/**
 * A collection of arguments for invoking getCloudOrganization.
 */
export interface GetCloudOrganizationArgs {
    /**
     * The ID of this resource.
     */
    id?: string;
    slug?: string;
}
/**
 * A collection of values returned by getCloudOrganization.
 */
export interface GetCloudOrganizationResult {
    readonly createdAt: string;
    /**
     * The ID of this resource.
     */
    readonly id: string;
    readonly name: string;
    readonly slug: string;
    readonly updatedAt: string;
    readonly url: string;
}
export declare function getCloudOrganizationOutput(args?: GetCloudOrganizationOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetCloudOrganizationResult>;
/**
 * A collection of arguments for invoking getCloudOrganization.
 */
export interface GetCloudOrganizationOutputArgs {
    /**
     * The ID of this resource.
     */
    id?: pulumi.Input<string>;
    slug?: pulumi.Input<string>;
}
