import { Value } from '../soap/value';
import { Row } from '../soap/row';
import { ResultSet } from '../soap/resultSet';
export declare module Pql {
    function createValue(value: any): Value;
    function toString(value: Value): string;
    function getColumnLabels(resultSet: ResultSet): string[];
    function getRowStringValues(row: Row): string[];
    function combineResultSets(first: ResultSet, second: ResultSet): ResultSet;
}
