import { computed } from 'vue'; import type { ExtractPropTypes, __ExtractPublicPropTypes } from 'vue'; export declare const paginationProps: { readonly pageSize: NumberConstructor; readonly defaultPageSize: NumberConstructor; readonly total: NumberConstructor; readonly pageCount: NumberConstructor; readonly pagerCount: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly currentPage: NumberConstructor; readonly defaultCurrentPage: NumberConstructor; readonly layout: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly pageSizes: import("@hd-front-end/element-plus/es/utils").EpPropFinalized, unknown, unknown, () => [10, 20, 30, 40, 50, 100], boolean>; readonly popperClass: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly prevText: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly prevIcon: import("@hd-front-end/element-plus/es/utils").EpPropFinalized, unknown, unknown, () => any, boolean>; readonly nextText: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly nextIcon: import("@hd-front-end/element-plus/es/utils").EpPropFinalized, unknown, unknown, () => any, boolean>; readonly teleported: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly small: BooleanConstructor; readonly size: { readonly type: computed; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly background: BooleanConstructor; readonly disabled: BooleanConstructor; readonly hideOnSinglePage: BooleanConstructor; readonly appendSizeTo: StringConstructor; }; export type PaginationProps = ExtractPropTypes; export type PaginationPropsPublic = __ExtractPublicPropTypes; export declare const paginationEmits: { 'update:current-page': (val: number) => boolean; 'update:page-size': (val: number) => boolean; 'size-change': (val: number) => boolean; change: (currentPage: number, pageSize: number) => boolean; 'current-change': (val: number) => boolean; 'prev-click': (val: number) => boolean; 'next-click': (val: number) => boolean; }; export type PaginationEmits = typeof paginationEmits; declare const _default: any; export default _default;