import React from 'react'; export declare const MinistoreContext: React.Context<{ getAll: () => Map; get: (key: string) => any; set: (key: string, value: any) => void; } | null>; export declare const Application: ({ children }: { children: React.ReactElement; }) => React.JSX.Element;