/** * Watch for file changes in a folder and trigger a rebuild of the Lambdas * @param folder */ declare function watchForFileChanges(folder: string): void; export declare const FileWatcher: { watchForFileChanges: typeof watchForFileChanges; }; export {};