import { type IAppModel } from "../../abstractions/models/IAppModel.js"; export interface IListAppLambdaFunctionsServiceParams { whitelist?: string | string[]; } export interface IListAppLambdaFunctionsServiceResult { list: Array<{ name: string; path: string; }>; meta: { count: number; totalCount: number; }; } export interface IListAppLambdaFunctionsService { execute(app: IAppModel, params?: IListAppLambdaFunctionsServiceParams): Promise; } export declare const ListAppLambdaFunctionsService: import("@webiny/di").Abstraction; export declare namespace ListAppLambdaFunctionsService { type Interface = IListAppLambdaFunctionsService; type Params = IListAppLambdaFunctionsServiceParams; type Result = IListAppLambdaFunctionsServiceResult; }