import { type ReactElement } from "react"; /** * @internal */ export type ButtonsOrientationType = "upDown" | "leftRight"; /** * @internal */ export interface IPagingProps { page: number; pagesCount: number; showNextPage(): void; showPrevPage(): void; buttonsOrientation?: ButtonsOrientationType; } export type PagingButtonType = "prev" | "next"; /** * @internal */ export declare function Paging({ page, pagesCount, buttonsOrientation, showNextPage, showPrevPage }: IPagingProps): ReactElement; //# sourceMappingURL=Paging.d.ts.map