/** A location's status. */ export declare const LocationStatus: { readonly Active: "ACTIVE"; readonly Inactive: "INACTIVE"; }; export type LocationStatus = (typeof LocationStatus)[keyof typeof LocationStatus];