import { Function as LambdaFunction, FunctionProps } from 'aws-cdk-lib/aws-lambda';
import { Construct } from 'constructs';
export interface CustomNodejsFunctionProps extends Partial<Omit<FunctionProps, 'code'>>, Pick<FunctionProps, 'code'> {
}
export declare class CustomNodejsFunction extends LambdaFunction {
    private static powertoolsLayer;
    constructor(scope: Construct, id: string, props: CustomNodejsFunctionProps);
}
