import { type LaunchSpec } from './launch-spec.js'; export interface AutoStartResult { status: 'installed' | 'updated' | 'unchanged' | 'disabled' | 'skipped'; message: string; } export declare function applyAutoStartPolicyAfterHealth(source: LaunchSpec, agentVersion: string, requestedPolicy?: boolean, platform?: NodeJS.Platform): AutoStartResult; export declare function applyAutoStartPolicyFromRuntime(enabled: boolean, agentVersion: string, platform?: NodeJS.Platform): AutoStartResult;