export type ChangedFilesStatus = 'added' | 'removed' | 'modified';
export type PreviewType = {
    mainDeploymentId?: string;
    changedFiles?: ChangedFile[];
};
export type DeploymentPreviewType = PreviewType & {
    mainDeployment?: {
        subdomain: string;
        customDomains: string[];
        basePath?: string;
    };
};
export type ChangedFile = {
    path: string;
    status: ChangedFilesStatus;
};
