import { AuthState } from '../interfaces/auth.interface'; export declare const authStore: { state: AuthState; setLoading(loading: boolean): void; setAuthenticated(authenticated: boolean): void; setError(error: string | null): void; reset(): void; onChange(callback: (newValue: boolean) => void): () => void; };