export declare const tryUntilSuccess: <T>(logic: () => Promise<T>, onError?: ((error: unknown) => void | Promise<void>) | undefined) => Promise<T>;
