export interface VoterIdResult { /** * Name of the voter in the card */ name: string; /** * Relation of the voter in card */ relationName: string; /** * Voter ID Number */ uniqueId: string; /** * DOB of the voter in card */ dob: string; /** * Address of the voter in card */ address: string; /** * Photo of the voter in card */ image: string; }