import { CFCustomer } from "../../CommonTypes"; export interface AssignCustomerParams { customerId: string; } export interface AssignCustomerResponse { success: boolean; customer: CFCustomer; timestamp: string; } export type AssignCustomer = (params: AssignCustomerParams) => Promise;