declare class InvalidCharacterError extends Error { readonly character: string; readonly position: number; readonly source: string; static createForUnexpectedCharacter(position: number, source: string): InvalidCharacterError; static createForUnclosedQuote(position: number, source: string): InvalidCharacterError; constructor(message: string, character: string, position: number, source: string); } export { InvalidCharacterError }; //# sourceMappingURL=InvalidCharacterError.d.ts.map