import React from 'react'; export type ActiveAccountContextValue = { account: string; }; export type ActiveAccountProviderProps = { children?: React.ReactNode; account: string; }; export declare const ActiveAccountProvider: ({ children, account, }: ActiveAccountProviderProps) => React.JSX.Element; export declare const useActiveAccount: () => ActiveAccountContextValue;