/** A location's type. */ export declare const LocationType: { readonly Physical: "PHYSICAL"; readonly Mobile: "MOBILE"; }; export type LocationType = (typeof LocationType)[keyof typeof LocationType];