import { QueryService } from './QueryService'; /** * A class for making Search calls via Rest */ export declare class SearchService extends QueryService { /** * constructor description * @param endpoint - Base Url for all relative http calls eg. 'search/JobOrder' */ constructor(entity: any, routeUrl?: string); get endpoint(): string; set endpoint(value: string); sort(...args: any[]): this; where(value: any): this; query(value: any): this; then(done: any, fail?: any): Promise; }