import { CSSResultGroup, PropertyValues, TemplateResult, LitElement } from 'lit'; import { ITripItem, Notice, PtSituation } from '../core/timetable.js'; /** HimCus interface for mapped icon name and text */ export interface HimCus { name: string; text?: string | null; } /** Boarding icon interface for mapped icon name and text */ export interface Boarding { name: string; text: string; } export interface Price { price?: string; text?: string; isDiscount?: boolean; } export declare const renderIconProduct: (icon: string, name: string) => TemplateResult; export declare const renderStringProduct: (vehicleName: string, line?: string | null) => TemplateResult; export declare const sortSituation: (situations: PtSituation[]) => PtSituation[]; export declare const getHimIcon: (situation: PtSituation) => HimCus; export declare const getCus: (trip: ITripItem, currentLanguage: string) => HimCus; export declare const filterNotices: (notices: Notice[]) => Notice[]; export declare const handleNotices: (notices: Notice[]) => Notice[]; /** * It displays information about the trip, acting as a container for all the `sbb-timetable-*` components. * */ export declare class SbbTimetableRowElement extends LitElement { static styles: CSSResultGroup; /** The trip Prop. */ trip: ITripItem; /** The price Prop, which consists of the data for the badge. */ price?: Price; /** This will be forwarded to the sbb-pearl-chain component - if true the position won't be animated. */ disableAnimation?: boolean; /** This will be forwarded to the notices section */ boarding?: Boarding; /** * The loading state - * when this is true it will be render skeleton with an idling animation */ loadingTrip: boolean; /** * The loading state - * when this is true it will be render skeleton with an idling animation */ loadingPrice: boolean; /** * Hidden label for the card action. It overrides the automatically generated accessibility text for the component. Use this prop to provide custom accessibility information for the component. */ cardActionLabel?: string; /** This will be forwarded to the sbb-card component as aria-expanded. */ accessibilityExpanded?: boolean; /** When this prop is true the sbb-card will be in the active state. */ active?: boolean; private _language; protected willUpdate(changedProperties: PropertyValues): void; private _now; /** The skeleton render function for the loading state */ private _renderSkeleton; private _getQuayType; private _getQuayTypeStrings; /** map Quay */ private _renderQuayType; private _handleHimCus; private _getAccessibilityText; protected render(): TemplateResult; } declare global { interface HTMLElementTagNameMap { 'sbb-timetable-row': SbbTimetableRowElement; } } //# sourceMappingURL=timetable-row.d.ts.map