import * as React from 'react';
import type { ITimestampStruct, Patch } from 'json-joy/lib/json-crdt';
export interface TickProps {
    id: ITimestampStruct;
    patch?: Patch;
    selected?: boolean;
    marker?: string;
    tickWidth: number;
    noHover?: boolean;
    scrubbing?: boolean;
}
export declare const Tick: React.FC<TickProps>;
