import { CredentialsProvider } from '@tidal-music/common'; import { paths } from './allAPI.generated.js'; import { RetryOptions } from './retry.js'; /** * Create a Tidal API client with the provided credentials. * * @param credentialsProvider The credentials provider, from Auth module. * @param baseUrl Override the base URL to use for the API client. * @param retryOptions Customize the retry mechanism applied to read-only * (GET/HEAD/OPTIONS) requests. Pass `{ enabled: false }` to disable it. * @returns A Tidal API client. */ export declare function createAPIClient(credentialsProvider: CredentialsProvider, baseUrl?: string, retryOptions?: RetryOptions): import('openapi-fetch').Client;