import { LldConfig } from './types/lldConfig.js'; import { LambdaResource } from './types/resourcesDiscovery.js'; /** * Get the names of the supported frameworks */ declare function getSupportedFrameworksNames(): string[]; /** * Get the name of the current framework */ declare function getCurrentFrameworkName(config: LldConfig): Promise; declare function getLambdas(config: LldConfig): Promise; export declare const ResourceDiscovery: { getSupportedFrameworksNames: typeof getSupportedFrameworksNames; getCurrentFrameworkName: typeof getCurrentFrameworkName; getLambdas: typeof getLambdas; }; export {};