export declare const handleRouteError: (error: unknown) => { message: any; status: number; }; /** * Extract message from exception error (try-catch) * @param error error from catch block as any * @returns */ export declare const messageFromError: (error: any) => string;