import type { ComputedRef } from 'vue'; import type { BasicTableProps } from '../types/table'; export declare function useLoading(props: ComputedRef): { getLoading: ComputedRef; setLoading: (loading: boolean) => void; };