import { Highlight } from '../types';
import { BlendColors } from '../utils';
export interface EventRailsContext {
highlights?: Highlight[];
duration: number;
getHighlightColorBlended: BlendColors;
}
/** Context for storing `EventRailsContext` to distribute it to ``
* @category React Context
*/
export declare const EventRailsContext: import("react").Context;