import { CfnInclude, IncludedNestedStack } from '@aws-cdk/cloudformation-include'; import { NestedStack } from '@aws-cdk/core'; export declare class CfnResourceNotFoundError extends Error { constructor(logicalId: string, type: string); } export declare class BaseIncludedStack implements IncludedNestedStack { includedTemplate: CfnInclude; stack: NestedStack; constructor(includedStack: IncludedNestedStack); getResourceConstruct(logicalId: string): T; }