import { ListAppLambdaFunctionsService, PulumiExportService, LoggerService } from "../../abstractions/index.js"; import { type AppModel } from "../../models/index.js"; export declare class DefaultListAppLambdaFunctionsService implements ListAppLambdaFunctionsService.Interface { private pulumiExportService; private loggerService; constructor(pulumiExportService: PulumiExportService.Interface, loggerService: LoggerService.Interface); execute(app: AppModel, params?: ListAppLambdaFunctionsService.Params): Promise<{ list: { name: string; path: string; }[]; meta: { count: number; totalCount: number; }; }>; } export declare const listAppLambdaFunctionsService: import("@webiny/di").Implementation;