import { KendoComponent } from '../_types/component';
export declare const TIMELINETRACKITEM_CLASSNAME = "k-timeline-track-item";
declare const states: "focus"[];
export type KendoTimelineTrackItemOptions = {
    children?: React.JSX.Element | React.JSX.Element[];
    content?: string;
    /** @aria aria-selected="true" when tab is selected/focused */
    ariaSelected?: boolean;
    /** @aria aria-describedby points to the tabpanel */
    ariaDescribedBy?: string;
};
export type KendoTimelineTrackItemState = {
    [K in (typeof states)[number]]?: boolean;
};
export declare const TimelineTrackItem: KendoComponent<KendoTimelineTrackItemOptions & KendoTimelineTrackItemState & React.HTMLAttributes<HTMLLIElement>>;
export default TimelineTrackItem;
