/** * Check if the current directory is a trackable project. * A project is detected if any of these exist: * - .git/ directory * - package.json file * - .proj-track.json file */ export declare function isProjectDirectory(dir?: string): boolean; /** * Check if tracking is paused in the current project. */ export declare function isTrackingPaused(dir?: string): boolean; /** * Check if tracking has been permanently disabled via `proj-track remove`. */ export declare function isTrackingDisabled(dir?: string): boolean; //# sourceMappingURL=project-detector.d.ts.map