import { ErrorDefinition } from "../../types/errors/ErrorDefinition"; type ErrorEntry = Omit & { description?: string; deprecated?: string; }; type SubDomain = { code: number; errors: Record; }; type Domain = { code: number; subDomains: Record; }; export type Domains = Record; type CheckOptions = { plugin?: boolean; }; declare const domains: Domains; declare function checkDomains(errorCodesFiles: Domains, options?: CheckOptions): void; declare function loadPluginsErrors(pluginManifest: { errors: Record; name: string; }, pluginCode: number): void; export { checkDomains, domains, loadPluginsErrors };