import { DeploymentConfig } from './config';
/**
 * Creates a tarball of the application build
 * @param config The deployment configuration
 * @returns A promise that resolves with the path to the created tarball
 */
export declare function createArchive(config: DeploymentConfig): Promise<string>;
