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