import { PlantelUsuario } from './plantel-usuario.entity';
export declare class Plantel {
    id: number;
    nombre: string;
    descripcion: string;
    logoUrl: string;
    activo: boolean;
    createdAt: Date;
    updatedAt: Date;
    plantelUsuarios: PlantelUsuario[];
}
