import { RdsBaseParameters } from './parameters.model'; /** * Various parameters for Select REST calls */ export interface SelectParameters extends RdsBaseParameters { /** Number of columns to query */ collimit?: number; /** Column number to start at */ coloffset?: number; /** Regular expression to search columns */ cols?: Array; /** Whether to return a count of all the records in the database that match the query */ count?: boolean; /** Filter for the query */ where?: string; } /** * Given SelectParameters, serialize them to be used as * URL parameters * * @param options options to serialize * @returns serialized string as a urlParameter */ export declare function serializeSelectOptionsUrlParams(options: SelectParameters): string;