export declare type Catraca = { id: number; matricula: string; local: string; evento: Catraca.evento; horario: (any[] | boolean | number | string); sync_cod: string; }; export declare namespace Catraca { enum evento { ENTRADA = "entrada", SAIDA = "saida", OUTRO = "outro" } }