export interface IPreguntas {
    pilar: string;
    preguntas: {
        pregunta: string,
        opciones: any
    }[];
}
