import { ZodTypeAny } from "zod";
import type { MakeRetries } from "../types";
export declare function makeRetries<C extends object, I extends ZodTypeAny, R>(props: MakeRetries<C, I, R>): Promise<R | null>;
