export interface ServerlessDevOptions { readonly cliName?: string; readonly config?: string; readonly debug?: boolean; readonly host?: string; readonly httpPort?: number; readonly httpsPort?: number; readonly quiet?: boolean; readonly remove?: boolean; readonly test?: boolean; readonly usePublicIp?: boolean; readonly variables?: string; readonly wsPort?: number; } export type ServerlessDevCallback = (status: number) => void; export declare const serverlessDev: (cmd: ServerlessDevOptions, callback?: ServerlessDevCallback) => Promise;