export interface IKyc { userId: number; fullName: string; birthdate?: Date; docTypeId: string; docIdNumber: string; streetAddress: string; city: string; state: string; postcode: string; country: string; verified?: boolean; docIdPic: string; selfiePic: string; proofResPic: string; } export declare class Kyc implements IKyc { userId: number; fullName: string; birthdate?: Date; docTypeId: string; docIdNumber: string; streetAddress: string; city: string; state: string; postcode: string; country: string; verified?: boolean; docIdPic: string; selfiePic: string; proofResPic: string; constructor(kyc?: Kyc); } //# sourceMappingURL=kyc.d.ts.map