import { MappedException } from 'nestjs-mapped-exception'; import { StockException } from './modules/stock/stock.exception'; export declare class AppService { private readonly stockException; constructor(stockException: MappedException); getVersion(): Promise; getMappedErrors(): { name: string; errors: unknown; }[]; private getErrorsFromMappedExceptionClass; }