import type { PivotHeadHost } from './host'; export declare function calculatePaginationForCurrentView(host: PivotHeadHost): void; export declare function updatePaginationForData(host: PivotHeadHost, data: unknown[]): void; export declare function getPaginatedData(host: PivotHeadHost, data: T[]): T[]; export declare function previousPage(host: PivotHeadHost): void; export declare function nextPage(host: PivotHeadHost): void; export declare function setPageSize(host: PivotHeadHost, pageSize: number): void; export declare function goToPage(host: PivotHeadHost, page: number): void;