import { Stack, StackProps } from "aws-cdk-lib";
import { Construct } from "constructs";
import { RepositoryConnection } from "./repository_connection";
import { HostingConfiguration } from "../bin/cli/shared/types";
export declare class RepositoryStack extends Stack {
    readonly repositoryConnection: RepositoryConnection;
    constructor(scope: Construct, id: string, hostingConfiguration: HostingConfiguration, props?: StackProps);
}
