export interface ProjectContext { isExistingProject: boolean; hasPlaywrightConfig: boolean; playwrightConfigPath: string | null; hasChecklyConfig: boolean; hasChecksDir: boolean; hasSkillInstalled: boolean; skillPath: string | null; } export declare function detectProjectContext(projectDir: string): ProjectContext;