import { DeploymentConfig } from './config';
/**
 * Uploads the tarball to the server via SFTP and deploys it
 * @param config The deployment configuration
 * @param localTarballPath The local path to the tarball
 * @returns A promise that resolves when the deployment is complete
 */
export declare function deployToServer(config: DeploymentConfig, localTarballPath: string): Promise<void>;
