/** * Represents the accuracy level of location services */ type LocationAccuracy = 'best' | 'high' | 'medium' | 'low' | 'reduced'; export type { LocationAccuracy };