import type { InputStream, Stack } from '@lezer/lr'; /** * Advance the stream to the end of the FreeText token. * Adjust the end accordingly to exclude the previous token in case * a free text is followed by a token that requires a filter key. * @internal */ export declare function advanceAndAcceptFreeText(inputStream: InputStream, stack: Stack, offset: number, startedStringTokenization: boolean, lastTokenizationEndIndexCache: WeakMap, excludePreviousToken?: boolean): void;