type PaginateProps = {
    pages: number;
    current_page: number;
    length?: number;
};

declare function paginate({ pages, current_page, length, }: PaginateProps): number[];

export { type PaginateProps, paginate };
