export declare class AgendaHora {
    dia: string;
    hora: string;
    textoDia: string;
    elementosLibres: number;
    constructor(dia: string, hora: string, textoDia: string, elementosLibres: number);
}
