import { Opcao } from './opcao'; import { PerguntaVinculada } from './pergunta-vinculada'; export declare class Pergunta { id: number; enunciado: string; nomeUnico: string; tipoResposta: number; ativa: boolean; categoria: number; obrigatoria: boolean; descricaoCombo: boolean; filtro: boolean; respostaBloqueada: boolean; preenchimentoAutomatico: boolean; ordem: number; tamanhoMinimo: number; tamanhoMaximo: number; instrucao: string; alerta: string; opcoes: Opcao[]; opcoesGenericas: Opcao[]; backgroundColor: string; perguntaVinculada: PerguntaVinculada; }