import type { PaginationProps } from '../types/pagination'; import { ComputedRef } from 'vue'; export declare function usePagination(refProps: ComputedRef, props: Recordable): { getPagination: () => boolean | PaginationProps; getPaginationInfo: ComputedRef; setShowPagination: (flag: boolean) => Promise; getShowPagination: () => boolean; setPagination: (info: Partial) => void; };