type UsePaginationProps = {
    current: number;
    pageCount: number;
};
export declare const usePagination: (props: UsePaginationProps) => {
    current: number;
    prev?: number;
    next?: number;
    items: [number | string];
};
export {};
//# sourceMappingURL=index.d.ts.map