import * as pulumi from "@pulumi/pulumi"; export declare function getKatelloLifecycleEnvironment(args: GetKatelloLifecycleEnvironmentArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getKatelloLifecycleEnvironment. */ export interface GetKatelloLifecycleEnvironmentArgs { name: string; } /** * A collection of values returned by getKatelloLifecycleEnvironment. */ export interface GetKatelloLifecycleEnvironmentResult { readonly description: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly label: string; readonly library: boolean; readonly name: string; readonly organizationId: number; readonly priorId: number; readonly successorId: number; } export declare function getKatelloLifecycleEnvironmentOutput(args: GetKatelloLifecycleEnvironmentOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getKatelloLifecycleEnvironment. */ export interface GetKatelloLifecycleEnvironmentOutputArgs { name: pulumi.Input; }