export type CreateBranchQuery = {
    branchName: string;
    defaultBranch: boolean;
};
export type CreateBranchResult = {
    branch: {
        id: string;
        name: string;
    };
};
