import { Construct } from 'constructs'; import { NestedStack, NestedStackProps, Duration } from 'aws-cdk-lib'; import { Api } from '../../constructs/Api'; import { Lambdas } from '../../constructs/Lambdas'; import { Tables } from '../../constructs/Tables'; import { ServerlessConstructProps } from './ServerlessConstruct'; export interface ServerlessNestedStackProps extends Omit, ServerlessConstructProps { stackTimeout?: Duration; } export declare class ServerlessNestedStack extends NestedStack { lambdas?: Lambdas; tables?: Tables; api?: Api; domain?: string; private construct; constructor(scope: Construct, id: string, props: ServerlessNestedStackProps); }