import { AnyClass } from 'tn-typescript'; import { ExoLogErr } from '../../accessories/ExoLogErr'; import { ExoBodyTypeArr } from '../ExoFields/ExoBody/ExoBody'; export declare const exoRouteErrors: { serveless: (name: string) => ExoLogErr; invalidPrefix: (prefix: string) => ExoLogErr; explicitType: (field: string, name: string, trace: string[], extendtype?: boolean) => ExoLogErr; nonStrCompress(type: string, name: string, trace: string[]): ExoLogErr; nonStrMaxlen(field: string, type: string, name: string, maxlen: number, trace: string[]): ExoLogErr; wrongBody: (name: string, type: ExoBodyTypeArr) => ExoLogErr; wrongField: (field: string, name: string) => ExoLogErr; wrongResultType: (cls: AnyClass) => ExoLogErr; };