import * as pulumi from "@pulumi/pulumi"; /** * Label data source */ export declare function getLabel(args: GetLabelArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getLabel. */ export interface GetLabelArgs { /** * The UUID of the label */ id: string; /** * The name of the label */ name?: string; } /** * A collection of values returned by getLabel. */ export interface GetLabelResult { /** * The description of the label */ readonly description: string; /** * The UUID of the label */ readonly id: string; /** * The name of the label */ readonly name: string; /** * The Terraform ID. */ readonly tfid: string; } /** * Label data source */ export declare function getLabelOutput(args: GetLabelOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getLabel. */ export interface GetLabelOutputArgs { /** * The UUID of the label */ id: pulumi.Input; /** * The name of the label */ name?: pulumi.Input; } //# sourceMappingURL=getLabel.d.ts.map