import React from 'react';
import "./hover_ghost.less";
import { TimelineRow } from '@/interface/action';
export type HoverGhostProps = {
    styles?: React.CSSProperties;
    getGhostRender?: (row: TimelineRow) => React.ReactNode;
    row: TimelineRow;
};
export declare const HoverGhost: React.ForwardRefExoticComponent<HoverGhostProps & React.RefAttributes<HTMLDivElement>>;
