import { NodejsFunction as LambdaNodejsFunction, NodejsFunctionProps } from 'aws-cdk-lib/aws-lambda-nodejs';
import { Runtime } from 'aws-cdk-lib/aws-lambda';
import { Construct } from 'constructs';
/**
 * Valid runtimes, does not contain custom runtimes
 */
export declare const validRuntimes: Runtime[];
/**
 * Compliant NodeJS Lambda Function.
 *
 * See README for usage examples
 */
export declare class NodejsFunction extends LambdaNodejsFunction {
    constructor(scope: Construct, id: string, props: NodejsFunctionProps);
    protected checkRuntime(): string[];
}
//# sourceMappingURL=lambda-nodejs.d.ts.map