import * as lambda from 'aws-cdk-lib/aws-lambda';
import { Construct } from 'constructs';
/**
 * Props for IndexFunction
 */
export interface IndexFunctionProps extends lambda.FunctionOptions {
}
/**
 * An AWS Lambda function which executes src/index.
 */
export declare class IndexFunction extends lambda.Function {
    constructor(scope: Construct, id: string, props?: IndexFunctionProps);
}
