/** Enumerates the possible statuses the team member can have within a business. */ export declare const TeamMemberStatus: { readonly Active: "ACTIVE"; readonly Inactive: "INACTIVE"; }; export type TeamMemberStatus = (typeof TeamMemberStatus)[keyof typeof TeamMemberStatus];