import { WatchedLambdaFunctionsService, LocalStorageService } from "../../abstractions/index.js"; export declare class DefaultWatchedLambdaFunctionsService implements WatchedLambdaFunctionsService.Interface { private localStorageService; constructor(localStorageService: LocalStorageService.Interface); markDirty(params: WatchedLambdaFunctionsService.Params, functionUrns: string[]): void; getDirty(params: WatchedLambdaFunctionsService.Params): string[]; clearDirty(params: WatchedLambdaFunctionsService.Params): void; clearAll(): void; private getCacheKey; private getData; private setData; } export declare const watchedLambdaFunctionsService: import("@webiny/di").Implementation;