import React from 'react';
import { RegionProps } from './Region.js';

/**
 * After wavesurfer.js@^7, Marker can be created with Region w/o end.
 * I.e., a region should have no duration to behave like a marker.
 */
declare function Marker(props: Omit<RegionProps, "end">): React.JSX.Element;

export { Marker as default };
