import { ICloudProjectInfo, IGeneralContext } from '../../types'; import { IProjectChangeCallback, IProjectChangeOptions } from 'types'; declare function onProjectChange(callback: IProjectChangeCallback, options?: IProjectChangeOptions): () => void; declare function detectProjectChanges(context: IGeneralContext, nextProject: ICloudProjectInfo | undefined): boolean; declare function runProjectChangeHandlers(context: IGeneralContext): void; export { onProjectChange, detectProjectChanges, runProjectChangeHandlers };