import { AAWalletConfig } from '../types';
/**
 * Initialize the AA wallet with configuration
 * @param config The wallet configuration
 */
export declare function init(config: AAWalletConfig): void;
/**
 * Get the current configuration
 * @returns The current configuration or null if not initialized
 */
export declare function getConfig(): AAWalletConfig | null;
/**
 * Check if the wallet is initialized
 * @returns True if initialized, false otherwise
 */
export declare function isInitialized(): boolean;
