export declare type Identity = { id: number; type: string; issueDate?: string | null; validDate?: string | null; issuerOrg?: string | null; issuerUf?: string | null; issuerCountry?: string | null; userId?: string | null; value?: string | null; mediaId?: number | null; status?: Identity.status | null; createdAt: string; updatedAt: string; deletedAt?: string | null; }; export declare namespace Identity { enum status { UNVERIFIED = "unverified", VERIFIED = "verified" } }