import { CfnFunction } from '@aws-cdk/aws-lambda'; import { BaseIncludedStack } from '../base-included-stack'; /** * @stability stable */ export interface ILambdaFunctionIncludedNestedStack { /** * @stability stable */ lambdaFunction(): CfnFunction; } export declare class LambdaFunctionIncludedNestedStack extends BaseIncludedStack implements ILambdaFunctionIncludedNestedStack { lambdaFunction(): CfnFunction; }