/**
 * Custom hook that provides an API client for Clear Estimates
 *
 * This hook creates a pre-configured HTTP client with:
 * - The correct API base URL from context
 * - Authentication headers with the API key
 *
 * Usage example:
 * ```
 * const client = useClient();
 * client.url('/projects').get().json(data => console.log(data));
 * ```
 *
 * @returns A wretch HTTP client instance configured for the Clear Estimates API
 */
export declare const useClient: () => import('wretch').Wretch<unknown, unknown, undefined>;
