import { Construct } from 'constructs'; import { Stack, StackProps } from 'aws-cdk-lib'; import { ICertificate } from 'aws-cdk-lib/aws-certificatemanager'; import { IHostedZone } from 'aws-cdk-lib/aws-route53'; import { CoreConstructProps } from './CoreConstruct'; export interface CoreStackProps extends StackProps, CoreConstructProps { } export interface AsyncCoreStackProps extends CoreStackProps { profile: string; } export declare class CoreStack extends Stack { certificate: ICertificate; hostedZone: IHostedZone; constructor(scope: Construct, id: string, props: CoreStackProps); }