/** * Enterprise Script Generator * Generates self-contained deployment scripts for bash and PowerShell */ export interface ScriptOptions { workspace?: string; apiUrl?: string; disableTelemetry?: boolean; serverName?: string; verbose?: boolean; } /** * Generate self-contained bash deployment script */ export declare function generateBashScript(options?: ScriptOptions): string; /** * Generate self-contained PowerShell deployment script */ export declare function generatePowerShellScript(options?: ScriptOptions): string; /** * Generate script based on target platform */ export declare function generateScript(platform: 'bash' | 'powershell' | 'auto', options?: ScriptOptions): { script: string; filename: string; platform: 'bash' | 'powershell'; }; /** * Get file extension for platform */ export declare function getScriptExtension(platform: 'bash' | 'powershell'): string; //# sourceMappingURL=script-generator.d.ts.map