import { StoreDefinition } from 'pinia'; /** * A reactive state management store that facilitates pagination functionality. * * This store is often used to manage pagination data, keep track of the current page, * manage the number of items per page, and store metadata associated with paginated content. * * Key aspects supported by this store can include: * - Current page number. * - Number of items displayed per page. * - Total count of items. * - Calculated total pages based on the items count and page size. * - State management for navigation events like next, previous, and reset. * * Intended to be utilized in scenarios requiring dynamic and reactive pagination behavior. */ export const usePaginatorStore: StoreDefinition<"PaginatorStore", { first: number; }, {}, { resetPagination(): void; setFirst(value: any): void; }>; //# sourceMappingURL=paginator.d.ts.map