import * as cdk from 'aws-cdk-lib';
import { Construct } from 'constructs';
export interface FrontendWebAppDeployStackProps extends cdk.StackProps {
    readonly domainName: string;
    readonly hostedZoneId: string;
    readonly originBucketName: string;
    readonly logBucketArn: string;
    readonly deploySourceAssetPath: string;
}
export declare class FrontendWebAppDeployStack extends cdk.Stack {
    constructor(scope: Construct, id: string, props: FrontendWebAppDeployStackProps);
}
