import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
 * Gets information about your Consumptions.
 */
export declare function getConsumptions(args?: GetConsumptionsArgs, opts?: pulumi.InvokeOptions): Promise<GetConsumptionsResult>;
/**
 * A collection of arguments for invoking getConsumptions.
 */
export interface GetConsumptionsArgs {
    /**
     * `projectId`) The ID of the project the consumption list is associated with.
     */
    projectId?: string;
}
/**
 * A collection of values returned by getConsumptions.
 */
export interface GetConsumptionsResult {
    /**
     * List of found consumptions
     */
    readonly consumptions: outputs.billing.GetConsumptionsConsumption[];
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    readonly organizationId: string;
    /**
     * The project ID of the consumption.
     */
    readonly projectId: string;
    /**
     * The last consumption update date.
     */
    readonly updatedAt: string;
}
/**
 * Gets information about your Consumptions.
 */
export declare function getConsumptionsOutput(args?: GetConsumptionsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetConsumptionsResult>;
/**
 * A collection of arguments for invoking getConsumptions.
 */
export interface GetConsumptionsOutputArgs {
    /**
     * `projectId`) The ID of the project the consumption list is associated with.
     */
    projectId?: pulumi.Input<string>;
}
