export interface DangerCheckResult { dangerous: boolean; reasons: string[]; requiresTypedConfirm: boolean; } export declare function getDangerCheck(command: string): DangerCheckResult;