/** * Makes an authenticated API request with error handling. * @param url The API endpoint URL. * @param baseURL The base URL for the API. * @param options The request options. * @returns The response data. * @throws An error if the request fails. */ export declare function makeAuthRequest(url: string, baseURL: string, options?: Record): Promise; /** * Makes an authenticated request with Authorization header. * @param url The API endpoint URL. * @param baseURL The base URL for the API. * @param token The authorization token. * @param options The request options. * @returns The response data. * @throws An error if the request fails. */ export declare function makeAuthenticatedRequest(url: string, baseURL: string, token: string, options?: Record): Promise;