export interface SupervisedAppConfig { format: 1; root: string; release: string; home: string; argv: string[]; environment: Record; } export declare function validateSupervisedAppConfig(input: unknown): SupervisedAppConfig; /** Run one reviewed profile command as the credential-free deployment user. */ export declare function runSupervisedApp(path: string): Promise;