export declare function getInputString(input: unknown, key: string): string | undefined; export declare function pathLooksInsideProject(rawPath: string, projectRoot: string | undefined): boolean; /** * Best-effort detection of a *catastrophic* shell command — system-/disk-/ * home-wide, effectively irreversible destruction. `projectRoot` is accepted * for signature stability but is intentionally unused: catastrophic targets are * absolute (filesystem root, a drive root, the home directory, a system * directory) and so are independent of where the project lives. */ export declare function isClearlyDestructiveBashCommand(command: string, projectRoot: string | undefined): boolean; //# sourceMappingURL=yolo-risk.d.ts.map