import type { Vent } from '../semantic.types'; import { VerticalShaftMesh } from './VerticalShaftMesh'; export declare class VentMesh extends VerticalShaftMesh { readonly isVentMesh = true; type: string; constructor(vent: Vent); static create(vent: Vent): VentMesh | null; }