import type { MicroParser } from './types.js';
/**
 * Fallback string parser.  Only job (beyond token book-keeping) is to
 * **un-escape `\\@` → `@`** per the query-language spec.
 *
 * NOTE: keep this *last* in the `microParsers` array so it only fires when all
 * the specialised parsers (date/time/uuid/boolean/…) have rejected.
 */
export declare const stringParser: MicroParser;
