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