/** * * `HOME` - HOME * * `WORK` - WORK */ export declare const LocationTypeEnum: { readonly Home: "HOME"; readonly Work: "WORK"; }; export type LocationTypeEnum = (typeof LocationTypeEnum)[keyof typeof LocationTypeEnum];