import { ReactNode } from "react"; type AccountContext = { privKey: Uint8Array; pubKeyHex: string; deviceId: string; currentMnemonic: string; }; export declare const AccountContext: import("react").Context; type Props = { children: ReactNode; loader?: ReactNode; }; export declare const AccountProvider: ({ children, loader }: Props) => import("react/jsx-runtime").JSX.Element; export {};