import { Config } from '../types'; import { AuthSDK } from '@aarc-dev/auth-sdk'; import { Ref, Reactive } from 'vue'; export interface _AarcAuthStore { config: Ref; isModalOpen: Ref; userData: Ref; isLoading: Ref; authClient: Reactive; isConnected: Ref; openModal: () => void; closeModal: () => void; setUserData: (data: any) => void; setIsLoading: (value: boolean) => void; setConfig: (newConfig: Config) => void; } export declare const useAarcAuthStore: any; export type AarcAuthStore = ReturnType;