import * as SchemaTypes from "./@schema"; import { TypedDocumentNode } from "@ts-gql/tag"; type DeleteBranchMutationVariables = SchemaTypes.Exact<{ refId: SchemaTypes.Scalars['ID']; }>; type DeleteBranchMutation = { readonly deleteRef: { readonly __typename: 'DeleteRefPayload'; } | null; }; export type type = TypedDocumentNode<{ type: "mutation"; result: DeleteBranchMutation; variables: DeleteBranchMutationVariables; documents: SchemaTypes.TSGQLDocuments; fragments: SchemaTypes.TSGQLRequiredFragments<"none">; }>; declare module "./@schema" { interface TSGQLDocuments { DeleteBranch: type; } } export declare const document: any; export {};