import { APIError } from "./definitions";
export interface ErrorResponse {
    errorId?: string | null;
    errors?: APIError[] | null;
}
