import { PropsWithChildren } from "react"; import { AccountManager } from "applesauce-accounts"; export declare const AccountsContext: import("react").Context | undefined>; /** Provides an AccountManager to the component tree */ export declare function AccountsProvider({ manager, children }: PropsWithChildren<{ manager?: AccountManager; }>): import("react/jsx-runtime").JSX.Element;