import React, { ReactNode } from 'react';
import { NeuraSDK } from '../core/neura-sdk';
import { NeuraSDKConfig } from '../types';
interface NeuraContextType {
    sdk: NeuraSDK;
}
interface NeuraProviderProps {
    config: NeuraSDKConfig;
    children: ReactNode;
}
export declare const NeuraProvider: React.FC<NeuraProviderProps>;
export declare const useNeura: () => NeuraContextType;
export {};
