export declare class UserProperties {
    'userId'?: string | null;
    'email'?: string | null;
    'firstName'?: string | null;
    'lastName'?: string | null;
    'teamId'?: string | null;
    'teamName'?: string | null;
    'role'?: string | null;
    'userStatus'?: string | null;
    'createdDate'?: number;
    'modifiedDate'?: number;
    'metaData'?: {
        [key: string]: string | null;
    } | null;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
