import { GraphQLError } from 'graphql'; import { LogLevel } from '../config'; export declare abstract class I18nError extends GraphQLError { message: string; variables: { [key: string]: string | number; }; code?: string; logLevel: LogLevel; protected constructor(message: string, variables?: { [key: string]: string | number; }, code?: string, logLevel?: LogLevel); }