export interface ApiClientConfig {
    token: string;
    baseUrl?: string;
    headers?: {
        [key: string]: string;
    };
}
