export interface AddEmail {
    email: string;
}
export interface VerifyEmail {
    otp: number;
    otpReference: string;
}
export interface EditAddress {
    countryId: string;
    stateId: string;
    lgaId: string;
    address: string;
}
