import { IFile, IFiles } from "./types.cjs"; import SwcServerlessPlugin from "./index.cjs"; //#region src/pack.d.ts declare const filterFilesForZipPackage: ({ files, functionAlias, includedFiles, excludedFiles, hasExternals, isGoogleProvider, depWhiteList }: { files: IFiles; functionAlias: string; includedFiles: string[]; excludedFiles: string[]; hasExternals: boolean; isGoogleProvider: boolean; depWhiteList: string[]; }) => IFile[]; declare function pack(this: SwcServerlessPlugin): Promise; declare function copyPreBuiltResources(this: SwcServerlessPlugin): Promise; //#endregion export { copyPreBuiltResources, filterFilesForZipPackage, pack }; //# sourceMappingURL=pack.d.cts.map