import { Entity } from './entity'; import { Session } from './session/session'; import { GrupoEvento } from './grupo-evento'; import { Periodo } from './ticket'; export declare class Evento extends Entity { session: Session; nome: string; codigo: string; local: string; grupos: Array; caixa: string; logo: string; endereco: string; subeventos: Array & { periodo: Periodo; }>; periodos?: Array; constructor(json: any); }