/** * `weft.schedules.get` operation + REST binding. * * Returns a single recurring schedule by id. * * @module server/operations/get-schedule */ import { z } from 'zod'; import type { ScheduleSummary } from '../../core/types.ts'; import type { UnknownRestBinding } from '../rest-bindings.ts'; declare const getScheduleInput: z.ZodObject<{ scheduleId: z.ZodString; }, z.core.$strip>; export type GetScheduleInput = z.infer; export type GetScheduleOutput = ScheduleSummary; export declare const getScheduleOperation: import("../operation-catalog.ts").OperationDefinition<{ scheduleId: string; }, ScheduleSummary, unknown>; export declare const getScheduleRestBinding: UnknownRestBinding; export {};