interface ProvisionResult { type: 'account' | 'forwarder'; domain: string; resource: string; status: 'created' | 'skipped' | 'failed'; password?: string; error?: string; } export declare function generatePassword(): string; export declare function provisionPlan(manifestPath: string): Promise; export declare function provisionExecute(manifestPath: string): Promise; export declare function provisionGenerate(domain?: string): Promise; export {};