interface ClientType {
  name: string;
  phone_no: string;
  address?: string | null;
}

export type { ClientType };
