import { EventEmitter } from '../../stencil-public-runtime'; export declare class BiPagination { /** * The number of pages */ count: number; page: number; /** * Number of always visible pages at the beginning and end. * @default 1 */ boundaryCount?: number; /** * Number of always visible pages before and after the current page. * @default 1 */ siblingCount?: number; /** * If `true`, hide the next-page button. * @default false */ hideNextButton: boolean; /** * If `true`, hide the previous-page button. * @default false */ hidePrevButton: boolean; /** * If `true`, the component is disabled. * @default false */ disabled: boolean; /** * Emitted when the page changes */ pageChanged: EventEmitter; private handleClick; render(): any; }