import { Observable } from 'rxjs'; import type { CustomerService } from '@src/services/customer.service'; export { countries, geolocation, getCountry, rememberPassword, resetPassword, states }; declare const countries: (customer: CustomerService) => Promise>; declare const getCountry: (countryIso: string) => Promise; declare const states: (countryId: number, customer: CustomerService) => Promise>; declare const geolocation: () => Observable; declare const rememberPassword: (email: string, sales: boolean) => Promise; declare const resetPassword: (hash: string, email: string, password: string, sales: boolean) => Promise;