import { SubscribeReturn } from '../TimelineMarkersContext';
import { MarkerRendererType, MarkerType } from '../markerType';
export type TodayMarkerProps = {
    interval?: number;
    updateMarker: (marker: MarkerType) => void;
    subscribeMarker: (m: MarkerType) => SubscribeReturn;
    children?: MarkerRendererType;
};
declare const TodayMarkerWrapper: {
    (props: Omit<TodayMarkerProps, "updateMarker" | "subscribeMarker">): import("react/jsx-runtime").JSX.Element;
    displayName: string;
};
export default TodayMarkerWrapper;
