/** * 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 { EventEmitter, OnChanges, SimpleChanges } from '@angular/core'; import { NzPaginationI18nInterface } from 'ng-zorro-antd/i18n'; import * as i0 from "@angular/core"; export declare class NzPaginationOptionsComponent implements OnChanges { nzSize: 'default' | 'small'; disabled: boolean; showSizeChanger: boolean; showQuickJumper: boolean; locale: NzPaginationI18nInterface; total: number; pageIndex: number; pageSize: number; pageSizeOptions: number[]; readonly pageIndexChange: EventEmitter; readonly pageSizeChange: EventEmitter; listOfPageSizeOption: Array<{ value: number; label: string; }>; onPageSizeChange(size: number): void; jumpToPageViaInput($event: Event): void; ngOnChanges(changes: SimpleChanges): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }