export interface CreateBookingNoteInput { content: string; } export interface UpdateBookingNoteInput { id: string; content: string; } export declare function useBookingNoteMutation(bookingId: string): import("@tanstack/react-query").UseMutationResult<{ id: string; bookingId: string; authorId: string; content: string; createdAt: string; authorName?: string | null | undefined; authorEmail?: string | null | undefined; }, Error, CreateBookingNoteInput, unknown> & { create: import("@tanstack/react-query").UseMutationResult<{ id: string; bookingId: string; authorId: string; content: string; createdAt: string; authorName?: string | null | undefined; authorEmail?: string | null | undefined; }, Error, CreateBookingNoteInput, unknown>; update: import("@tanstack/react-query").UseMutationResult<{ id: string; bookingId: string; authorId: string; content: string; createdAt: string; authorName?: string | null | undefined; authorEmail?: string | null | undefined; }, Error, UpdateBookingNoteInput, unknown>; remove: import("@tanstack/react-query").UseMutationResult<{ success: boolean; }, Error, string, unknown>; };