import type { XOR } from '../../../utils';
export type PageNotation = {
    page?: number;
    pageSize?: number;
};
export type OffsetNotation = {
    start?: number;
    limit?: number;
};
export type Any = XOR<PageNotation, OffsetNotation>;
//# sourceMappingURL=pagination.d.ts.map