import { z } from 'zod'; import type { UnknownRestBinding } from '../rest-bindings.ts'; declare const recoverAllInput: z.ZodObject<{}, z.core.$strip>; declare const recoverAllOutput: z.ZodObject<{ recovered: z.ZodArray; }, z.core.$strip>; export type RecoverAllInput = z.infer; export type RecoverAllOutput = z.infer; export declare const recoverAllOperation: import("../operation-catalog.ts").OperationDefinition, { recovered: string[]; }, unknown>; export declare const recoverAllRestBinding: UnknownRestBinding; export {};