export interface AutomationCommands { governanceCommand: string; watcherCommand: string; cronLines: string[]; watchDir: string; stateFile: string; standaloneGovernanceCron: string; } export interface CrontabInstallResult { attempted: boolean; installed: boolean; message: string; } export declare function isOpenClawHost(): boolean; export declare function getDefaultBadcaseWatchDir(cwd?: string): string; export declare function getDefaultWatcherStateFile(cwd?: string): string; export declare function buildAutomationCommands(cwd?: string): AutomationCommands; export declare function installAutomationCrontab(cwd?: string): CrontabInstallResult; //# sourceMappingURL=automation-setup.d.ts.map