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<string | undefined>;
declare function getLambdas(config: LldConfig): Promise<LambdaResource[] | undefined>;
export declare const ResourceDiscovery: {
    getSupportedFrameworksNames: typeof getSupportedFrameworksNames;
    getCurrentFrameworkName: typeof getCurrentFrameworkName;
    getLambdas: typeof getLambdas;
};
export {};
