interface PaginationOptions { selectorInit: string; selectorItemsPerPageInput: string; selectorPageNumberInput: string; selectorPageBackward: string; selectorPageForward: string; eventItemsPerPage: string; eventPageNumber: string; eventPageChange: string; } declare const Pagination_base: any; declare class Pagination extends Pagination_base { constructor(element: any, options?: Partial); _emitEvent: (evtName: string, detail: object) => void; static components: WeakMap; static options: PaginationOptions; } export default Pagination;