interface IIdentificationData {
    type: number;
    countryOfIssue: string;
    countryOfResidence: string;
    issueDate: string;
    expiryDate: string;
    number: string;
}
interface ICreateIdentificationData extends IIdentificationData {
}
interface IUpdateIdentificationData extends IIdentificationData {
    id: number;
}
interface IDeleteIdentificationData {
    id: number;
}
export type { ICreateIdentificationData, IUpdateIdentificationData, IDeleteIdentificationData, };
