/** * Prepares information for calls to get partitions metadata from the platform Index Service. */ export declare class IndexQueryRequest { private queryString?; private isHugeResponse?; /** * @param query An RSQL query to use to retrieve partitions that match the query. * The query must use the indexing attributes defined in the index layer. * @returns The updated [[IndexQueryRequest]] instance that you can use to chain methods. */ withQueryString(query?: string): IndexQueryRequest; /** * A setter for the provided isHugeResponse parameter. * * @param isHuge The boolean parameter shows is the query huge. * * @returns The updated [[IndexQueryRequest]] instance that you can use to chain methods. */ withHugeResponse(isHuge: boolean): IndexQueryRequest; /** * Gets a queryString for the request. * * @return The queryString string. */ getQueryString(): string | undefined; /** * Gets isHugeResponse property for the request. * * @return The `isHugeResponse` boolean. */ getHugeResponse(): boolean | undefined; }