export type PageNotation = {
    page?: number;
    pageSize?: number;
};
export type OffsetNotation = {
    start?: number;
    limit?: number;
};
export type Any = PageNotation | OffsetNotation;
//# sourceMappingURL=pagination.d.ts.map