import { HttpResponseError } from '@taquito/http-utils'; export declare const isNotFoundError: (error: unknown) => error is HttpResponseError; export declare const retryOnNotFound: (read: () => Promise, retryDelaysMs?: number[]) => Promise;