/** * Pagination options for most APIs. */ export declare class Pagination { offset: number; limit: number; reverse: boolean; constructor(offset: number, limit: number, reverse?: boolean); /** * Converts to a plain Javascript object with default values removed. * This is useful to avoid bloat when converting to url query parameters. */ toObject(): any; } //# sourceMappingURL=pagination.d.ts.map