import { StormError } from './StormError'; import { ErrorCode } from './ErrorCode'; import { StatusCode } from './StatusCode'; import { IConfig } from './IConfig'; import { ErrorObject } from 'ajv'; import { ExitCode } from './ExitCode'; interface IInvalidConfigErrorDetails { config: TConfig; errors: ErrorObject[]; } export declare class InvalidConfigError extends StormError> { constructor(config: TConfig, errors: ErrorObject[]); getMessage(): string; getCode(): ErrorCode; getHTTPCode(): StatusCode; getExitCode(): ExitCode; } export {};