export interface DeploymentConfig {
    serverHost: string;
    serverUser: string;
    serverDir: string;
    folderName: string;
    appType: 'vue' | 'next' | 'nuxt';
    htaccessTemplate?: string;
    healthCheckUrl?: string;
    healthCheckStatus?: number;
    pm2AppName?: string;
}
export declare function loadConfig(): DeploymentConfig;
export declare function getHtaccessContent(htaccessTemplate?: string): string;
