export declare type User = { id: number; uuid?: string | null; name: string; gender?: string | null; user: string; pass?: string | null; passwordStrength?: string | null; cpf?: string | null; email?: string | null; telefones?: string | null; matricula?: string | null; ppessoaCodigo?: number | null; token?: string | null; tokenPasswordReset?: string | null; tokenPasswordResetExpirationTime?: string | null; tokenPasswordResetTimes?: number | null; registered: boolean; lastLoginTime?: string | null; userCreated: User.userCreated; createdTime: (any[] | boolean | number | string) | null; updatedTime?: (any[] | boolean | number | string) | null; userProfileId?: (any[] | boolean | number | string) | null; sync: boolean | null; formResponseId?: number | null; bio?: string | null; birthday?: string | null; instagramUrl?: string | null; facebookUrl?: string | null; twitterUrl?: string | null; linkedinUrl?: string | null; expiresAt?: string | null; createdAt: string; updatedAt: string; deletedAt?: string | null; }; export declare namespace User { enum userCreated { FALSE = "false", TRUE = "true" } }