import { LitElement } from 'lit'; import { ElementPin } from './pin'; export declare class ConveyorElement extends LitElement { motorOn: boolean; motorSpeed_x: number; motorSpeed_y: number; conveyor_length: number; rotation: number; elevation: number; hasLoad: boolean; simulation_height: number; simulation_width: number; readonly conveyor_base_length: number; readonly height: number; readonly pinInfo: ElementPin[]; render(): import("lit-html").TemplateResult<1> | undefined; }