import { AxiosError } from 'axios'; import { Require } from '../types/utilities'; type ApiErrorResponse = { detail: string; }; export declare function isApiErrorResponse(error: unknown): error is Require, 'response'>; export declare function getApiErrorMessage(error: unknown, defaultErrorMessage: string): string; export {};