export declare const ProfileShareStatus: {
    readonly NotShared: "NOT_SHARED";
    readonly SharedWithMe: "SHARED_WITH_ME";
    readonly SharedByMe: "SHARED_BY_ME";
};
/**
 * The sharing status of the profile.
 */
export type ProfileShareStatus = (typeof ProfileShareStatus)[keyof typeof ProfileShareStatus];
