/** Information needed to create a new website */
export interface CreationRequest {
    /** Relative path on the hosting filesystem the website will be deployed into */
    path: string;
    /** Branch of the repository containing the website source code to deploy */
    vcsBranch: string;
    /** Clone URL of the repository containing the website source code to deploy */
    vcsUrl: string;
}
//# sourceMappingURL=CreationRequest.d.ts.map