import type { DtoHomeAddress } from './DtoHomeAddress'; export interface DtoRecipient { dateOfBirth?: string; email?: string; firstName: string; gender?: string; homeAddress: DtoHomeAddress; lastName: string; middleName?: string; mothersMaidenName?: string; nationality?: string; occupation?: string; phone?: string; } export declare function instanceOfDtoRecipient(value: object): value is DtoRecipient; export declare function DtoRecipientFromJSON(json: any): DtoRecipient; export declare function DtoRecipientFromJSONTyped(json: any, ignoreDiscriminator: boolean): DtoRecipient; export declare function DtoRecipientToJSON(json: any): DtoRecipient; export declare function DtoRecipientToJSONTyped(value?: DtoRecipient | null, ignoreDiscriminator?: boolean): any;