import type { FunctionDefinition } from '../../definition_types'; /** * Performs a query string query. Returns true if the provided query string matches the row. * * @example * FROM books * | WHERE QSTR("author: Faulkner") * * @example * FROM books * | WHERE QSTR("title: Hobbjt~", {"fuzziness": 2}) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=qstr.d.ts.map