export declare const setApiBaseUrl: (url: string) => void;
export declare const getApiBaseUrl: () => string;
export declare const setApiKey: (key: string) => void;
export declare const getApiKey: () => string | null;
export declare const setProxyUrl: (url: string) => void;
export declare const getProxyUrl: () => string | null;
export declare const setSecretKey: (key: string) => void;
export declare const getSecretKey: () => string | null;
export declare const setDebugMode: (debug: boolean) => void;
export declare const getDebugMode: () => boolean;
export declare function initializeStorenest(config: {
    apiBaseUrl: string;
    apiKey: string;
    secretKey?: string;
    proxyUrl?: string;
    debugMode?: boolean;
}): void;
