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