import * as React from "react"; import type { CurrentLocation } from '../../types/map'; type ContentType = 'dashboard' | 'map' | 'sites' | 'buildings' | 'files' | string; interface ContentContextType { currentContent: ContentType; changeContent: (content: ContentType, params?: Partial) => void; instance: string; } export declare function ContentProvider({ children, initialContent, initialInstance, }: { children: React.ReactNode; initialContent?: ContentType; initialInstance?: string; }): React.JSX.Element; export declare function useContent(): ContentContextType; export {}; //# sourceMappingURL=context.d.ts.map