./knowledge-base/cdk/lib/historical-research-stack.d.ts

import * as cdk from "aws-cdk-lib";
import { Construct } from "constructs";
interface HistoricalResearchStackProps extends cdk.StackProps {
    /** WAF WebACL ARN(us-east-1のWafStackから渡す / CloudFrontのIP制限) */
    webAclArn: string;
}
export declare class HistoricalResearchStack extends cdk.Stack {
    constructor(scope: Construct, id: string, props: HistoricalResearchStackProps);
}
export {};