import { OnChanges, OnInit, SimpleChanges } from '@angular/core'; import { IcosPaginationProps } from './pagination.props'; export declare class IcosPagination extends IcosPaginationProps implements OnInit, OnChanges { showPager: boolean; showPrev: boolean; showNext: boolean; showTotal: boolean; showSize: boolean; showJumper: boolean; static showLayout(IcosName: string, layout: string[]): boolean; constructor(); nextHandle(step: number): void; updatePageSize(nextPageSize: number): void; ngOnChanges(changes: SimpleChanges): void; ngOnInit(): void; private updateLayout; }