/// import { PaginationProps } from "../Pagination.interface"; export declare const onPageMock: jest.Mock; export declare const onNextMock: jest.Mock; export declare const onPreviousMock: jest.Mock; export declare class PaginationObject { render(props?: Partial): this; get buttons(): HTMLElement[]; get previousButton(): HTMLElement; get nextButton(): HTMLElement; get dotButton(): HTMLElement | null; clickButton(button: HTMLElement): void; }