interface DeployOpts { type: string; region: string; name?: string; image: string; } export declare function deploy(opts: DeployOpts): Promise; export {};