export interface TimestampsProps { start: number; end: number; firstVisibleFrame: number; lastVisibleFrame: number; segmentDensity?: number; } export declare function Timestamps({ start, end, firstVisibleFrame, lastVisibleFrame, segmentDensity, }: TimestampsProps): import("react/jsx-runtime").JSX.Element;