import type { AgentFramework } from "../templates/types.js"; /** * Detect agent framework from package.json dependencies. * Returns the most likely framework, or 'custom' if none detected. */ export declare function detectFramework(cwd: string): Promise; /** * Detect project name from package.json or directory name. */ export declare function detectProjectName(cwd: string): Promise; /** * Check if a config file already exists. */ export declare function findExistingConfig(cwd: string): Promise; /** Check if .github/ directory exists (indicator for GitHub Actions usage). */ export declare function hasGitHubDir(cwd: string): Promise; /** * Detect the package runner by checking for lockfiles. * Falls back to npx which works universally. */ export declare function detectPackageRunner(cwd: string): Promise; //# sourceMappingURL=init-detect.d.ts.map