import { ComputedRef, InjectionKey, WritableComputedRef } from "vue"; //#region ../../packages/components/pagination/src/constants.d.ts interface ElPaginationContext { currentPage?: WritableComputedRef; pageCount?: ComputedRef; disabled?: ComputedRef; changeEvent?: (val: number) => void; handleSizeChange?: (val: number) => void; } declare const elPaginationKey: InjectionKey; //#endregion export { ElPaginationContext, elPaginationKey };