interface AuthState { user: null; errors: []; } export declare const useAuthStore: import("pinia").StoreDefinition<"auth", AuthState, {}, { FETCH_USER(): Promise; SIGN_UP(email: string, password: string, name: string): Promise; SIGN_IN(email: string, password: string): Promise; SIGN_OUT(): Promise; }>; export {};