import { CSSResultGroup, TemplateResult, LitElement } from 'lit'; import { SbbOccupancy } from '../core/interfaces.js'; declare const SbbTimetableOccupancyElement_base: import('../core/mixins.js').AbstractConstructor & typeof LitElement; /** * Used in `sbb-timetable-row`, it displays information about wagon occupancy. */ export declare class SbbTimetableOccupancyElement extends SbbTimetableOccupancyElement_base { static styles: CSSResultGroup; /** Occupancy for first class wagons. */ firstClassOccupancy?: SbbOccupancy; /** Occupancy for second class wagons. */ secondClassOccupancy?: SbbOccupancy; private _language; protected render(): TemplateResult; } declare global { interface HTMLElementTagNameMap { 'sbb-timetable-occupancy': SbbTimetableOccupancyElement; } } export {}; //# sourceMappingURL=timetable-occupancy.d.ts.map