import { RequestOptionsFactory } from '@wix/sdk-types'; /** * Retrieves a list of up to 100 collections, given the provided paging, sorting and filtering. * See [Stores Pagination](https://dev.wix.com/api/rest/wix-stores/pagination) for more information. */ export declare function queryCollections(payload: object): RequestOptionsFactory; /** Retrieves a collection with the provided ID. */ export declare function getCollection(payload: object): RequestOptionsFactory; /** Retrieves a collection with the provided slug. */ export declare function getCollectionBySlug(payload: object): RequestOptionsFactory;