export type ClientConfig = {
    apiKey: string;
    tenantId: string;
    baseURL?: string;
    timeout?: number;
};
export type ApiError = {
    message: string;
    status: number;
    code?: string;
};
