import React from "react"; import { INostr } from "../../interfaces"; interface ApnaContextType { remoteComponentSelections?: { [appId: string]: { [remoteModuleName: string]: string; }; }; toggleHighlight: () => void; isHighlighted: boolean; nostr: INostr; } export declare const ApnaContext: React.Context; export declare const useApna: () => ApnaContextType; export declare function ApnaProvider({ children }: { children: React.ReactNode; }): React.JSX.Element; export {};