import { Construct } from 'constructs'; import { Stack } from 'aws-cdk-lib'; import { CoreNestedStack } from '../stacks/core/CoreNestedStack'; import { CDNNestedStack } from '../stacks/cdn/CDNNestedStack'; import { CognitoNestedStack } from '../stacks/cognito/CognitoNestedStack'; import { ServerlessNestedStack } from '../stacks/serverless/ServerlessNestedStack'; import { FullStackProps } from './FullStackProps'; import { FullStackConstruct } from './FullStackConstruct'; export declare class FullNestedStack extends Stack { core?: CoreNestedStack; cdn?: CDNNestedStack; cognito?: CognitoNestedStack; serverless?: ServerlessNestedStack; addConfigFile: FullStackConstruct['addConfigFile']; private constructor(); static create(scope: Construct, id: string, props: FullStackProps & { profile?: string; }): Promise; }