import type { Dispatch } from 'redux'; /** * Sets the app country code. * * @param countryCode - Country identifier (ISO 3166-1 alpha-2). * * @returns - Dispatch set country code action. */ declare const setCountryCode: (countryCode: string) => (dispatch: Dispatch) => void; export default setCountryCode;