import { aws_cloudfront as cloudfront } from "aws-cdk-lib";
import { IBucket } from "aws-cdk-lib/aws-s3";
import { Construct } from "constructs";
import { HostingConfiguration } from "../bin/cli/shared/types";
interface IConfigProps {
    changeUri: cloudfront.Function;
    certificateArn?: string;
    hostingConfiguration: HostingConfiguration;
}
export declare class HostingInfrastructure extends Construct {
    readonly hostingBucket: IBucket;
    readonly distribution: cloudfront.Distribution;
    constructor(scope: Construct, id: string, params: IConfigProps);
}
export {};
