import type { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/core'; import type * as Types from '../../generated/experience-api-types'; export declare type BookAppointmentMutationVariables = Types.Exact<{ input: Types.AppointmentBookInput; }>; export declare type BookAppointmentMutation = { readonly __typename: 'Mutation'; readonly appointmentBook: { readonly __typename: 'Appointment'; readonly id: string; }; }; export declare const BookAppointmentDocument: DocumentNode>;