import { DoDevopsHandler } from "../../../@types/command"; import { IOptionDefinition } from "../../../@types/option-types"; export declare const defaultConfig: { preDeployHooks: string[]; target: string; showUnderlyingCommands: boolean; sandboxing: string; }; export declare const description = "Deployment services for {bold Serverless}"; export declare const syntax = "dd deploy [fn1] [fn2] \n\n{dim Note: {italic stating particular functions is {italic optional} and if excluded will result in a full deployment of all functions.}}"; export declare const options: IOptionDefinition; export interface IDeployOptions { interactive: boolean; target: string; stage: string; region: string; } /** * **Deploy Handler** * * The _deploy_ command is used when you want to push your changes * to an environment where they will be used. This can mean different * things based on context and this handler will support the following * deployment scenarios: * * 1. Deploy to `npm` (aka, publish) * 2. Deploy to a serverless environment by leveraging the **Serverless** framework * * Over time we may add other targets for deployment. */ export declare const handler: DoDevopsHandler; //# sourceMappingURL=deploy.d.ts.map