import React, { Dispatch, PropsWithChildren, SetStateAction } from 'react'; interface ContextInterface { projectId?: number; setProjectId?: Dispatch>; } export declare const Context: React.Context; export declare const ContextProvider: ({ children }: PropsWithChildren<{}>) => React.JSX.Element; export {};