import { AxiosRequestConfig } from 'axios'; import { MiddlewareContext } from '../typings'; export declare const acceptNotFoundMiddleware: (ctx: MiddlewareContext, next: () => Promise) => Promise; export declare const notFoundFallbackMiddleware: (ctx: MiddlewareContext, next: () => Promise) => Promise; export type IgnoreNotFoundRequestConfig = AxiosRequestConfig & { nullIfNotFound?: boolean; };