/** * Generates an accessor function from a JSON string. * `-` maps to the identity accessor and `a.b.c` maps to nested property access. * @param propValue Expression string to compile. * @param configuration Active conversion configuration. * @returns A callable accessor compiled from the expression string. */ export declare function parseExpressionString(propValue: string, configuration?: any): (row: Record) => unknown; //# sourceMappingURL=parse-expression-string.d.ts.map