import type { Client } from './Client'; /** * @type ClientListResponse: * * @property data: An array of clients. * */ export type ClientListResponse = { data: Array; } & { [key: string]: any; };