import "./Timeline.scss"; import * as React from "react"; import { CommonProps } from "@bentley/ui-core"; import { Milestone } from "./interfaces"; /** Properties used to show milestone timeline in timeline player control * @internal * @deprecated */ export interface TimelineProps extends CommonProps { startDate: Date; endDate: Date; selectedDate: Date; milestones?: Milestone[]; isPlaying: boolean; onChange?: (values: ReadonlyArray) => void; onUpdate?: (values: ReadonlyArray) => void; onSlideStart?: () => void; } interface TimelineState { ticks: number[]; } /** Component used to show milestone timeline in timeline player control * @internal * @deprecated */ export declare class Timeline extends React.Component { constructor(props: TimelineProps); private _milestones; render(): JSX.Element; } export {}; //# sourceMappingURL=Timeline.d.ts.map