/** * * `NOTE` - NOTE * * `EMAIL` - EMAIL * * `OTHER` - OTHER */ export declare const ActivityTypeEnum: { readonly Note: "NOTE"; readonly Email: "EMAIL"; readonly Other: "OTHER"; }; export type ActivityTypeEnum = (typeof ActivityTypeEnum)[keyof typeof ActivityTypeEnum];