import type { ApiError } from '@/types/apiError.type.ts'; export declare class ApiErrorUtil { static getMessage(error: ApiError): string | null; static isError(error: unknown): error is ApiError; }