declare namespace Entity {
    type PollOption = {
        title: string;
        votes_count: number | null;
    };
}
