export interface AddCustomerNoteParams { note: string; customerId?: string; } export interface AddCustomerNoteResponse { success: boolean; customerId: string; noteId: string; note: string; timestamp: string; } export type AddCustomerNote = (params: AddCustomerNoteParams) => Promise;