import { NexaApp } from './NexaApp'; import { NexaConfig } from '../types/index'; import { Auth } from '../auth/Auth'; export declare const NexaBase: { init: (config: NexaConfig) => NexaApp; initializeApp: (config: NexaConfig) => NexaApp; }; export declare const initializeApp: (config: NexaConfig) => NexaApp; export declare const getFirestore: (app: NexaApp) => NexaApp; export declare const getAuth: (app: NexaApp) => Auth; export declare const signOut: (auth: Auth) => Promise; export declare const NexabaseAuth: { signOut: (auth: Auth) => Promise; };