import { KendoComponent } from '../_types/component';
export declare const TIMELINEHORIZONTALEVENT_CLASSNAME = "k-timeline-event";
export type KendoHorizontalTimelineEventProps = {
    content?: string | React.JSX.Element;
    title?: string;
    subtitle?: string;
    /** @aria aria-label for the tabpanel */
    ariaLabel?: string;
    /** @aria tabIndex for active tabpanel */
    panelTabIndex?: number;
};
export declare const HorizontalTimelineEvent: KendoComponent<KendoHorizontalTimelineEventProps & React.HTMLAttributes<HTMLLIElement>>;
export default HorizontalTimelineEvent;
