import { ArchiverOptions } from 'archiver'; export declare const defaultConfig: IPluginConfig; export interface IPluginConfig { method: 'bundle' | 'file'; useServerlessOffline: boolean; tryFiles: string[]; baseExclude: RegExp[]; modules: { exclude: string[]; deepExclude: string[]; }; exclude: string[]; include: string[]; uglify: boolean; uglifySource: boolean; uglifyModules: boolean; babel: any; babelCore: any; normalizeBabelExt: boolean; sourceMaps: boolean; transformExtensions: string[]; handlerEntryExt: string; /** `archiver` options */ zip: ArchiverOptions; functions: any; synchronous: boolean; deploy: boolean; /** When true, there will be no logs */ silent: boolean; f?: string; function?: string; noDeploy?: boolean; keep?: boolean; }