import * as pulumi from "@pulumi/pulumi"; export declare function getQStashSchedule(args: GetQStashScheduleArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getQStashSchedule. */ export interface GetQStashScheduleArgs { scheduleId: string; } /** * A collection of values returned by getQStashSchedule. */ export interface GetQStashScheduleResult { readonly body: string; readonly createdAt: number; readonly cron: string; readonly destination: string; readonly forwardHeaders: { [key: string]: string; }; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly notBefore: number; readonly retries: number; readonly scheduleId: string; } export declare function getQStashScheduleOutput(args: GetQStashScheduleOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getQStashSchedule. */ export interface GetQStashScheduleOutputArgs { scheduleId: pulumi.Input; }