import { Pagination, Sort, Filter } from '../types';
export declare const getPaginationParams: (pagination: Pagination) => string;
export declare const getSortParams: ({ property, direction }: Sort) => string;
export declare const getFilterParams: ({ property, value, exclude, exists, comparisonRule }: Filter) => string;
