import { Ref } from 'vue'; export interface LoadingStore { loading: Ref; setLoading: (state: boolean) => void; } declare const useLoadingStore: () => LoadingStore; export default useLoadingStore;