/** * Fetches the company's `country_code` from the DB via GET /v1/company/:id * and returns it as a lowercase ISO-3166-1 alpha-2 string (e.g. "ae", "sa"). * * Falls back to "ae" when: * - The user / company_id is not yet available * - The company record has no country_code set * - The API call fails */ export declare function useCompanyCountryCode(): { countryCode: string; loading: boolean; };