/** * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE */ import { ElementRef, EventEmitter, OnChanges, SimpleChanges } from '@angular/core'; import { VtsPaginationI18nInterface } from '@ui-vts-kit/ng-vts/i18n'; import * as i0 from "@angular/core"; export declare class VtsPaginationOptionsComponent implements OnChanges { private elementRef; disabled: boolean; showSizeChanger: boolean; showQuickJumper: boolean; locale: VtsPaginationI18nInterface; total: number; pageIndex: number; pageSize: number; pageSizeOptions: number[]; readonly pageIndexChange: EventEmitter; readonly pageSizeChange: EventEmitter; listOfPageSizeOption: Array<{ value: number; label: string; }>; vtsSize: string; constructor(elementRef: ElementRef); onPageSizeChange(size: number): void; jumpToPageViaInput($event: Event): void; trackByOption(_: number, option: { value: number; label: string; }): number; ngOnChanges(changes: SimpleChanges): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }