export interface RemoveCustomerNoteParams { noteId: string; } export interface RemoveCustomerNoteResponse { success: boolean; noteId: string; timestamp: string; } export type RemoveCustomerNote = (params?: RemoveCustomerNoteParams) => Promise;