import { QueryCondition } from '../query-conditions'; import type { SPARQLQuery } from '../ast-to-sparql'; import type { SelectFieldMap } from './types'; export declare function inferSPARQLQueryType(query: string): SPARQLQuery['type'] | undefined; export declare function createLiteralCondition(alias: string | undefined, column: string, value: any): QueryCondition; export declare function buildConditionTreeFromObject(conditions: Record | undefined, alias?: string): QueryCondition | undefined; export declare function resolveRowSubject(row?: Record | null): string | undefined; export declare function orderRowsBySubjects(rows: Record[], subjects: string[]): Record[]; export declare function projectReturningRow(row: Record, fields?: SelectFieldMap | true): Record; export declare function projectReturningRows(rows: Record[], fields?: SelectFieldMap | true): Record[]; //# sourceMappingURL=helpers.d.ts.map