import type TReactNamespace from 'react';
import type { CustomReactify, Prettify } from '../reactify';
import type { GenericEntity } from '../../imperative/Entities';
import type { YMapMarker as YMapMarkerI, YMapMarkerProps } from "../../imperative/YMapMarker/index";
type ComputedYMapMarkerProps = YMapMarkerProps & {
    markerElement?: HTMLElement;
};
type YMapMarkerContainerProps = TReactNamespace.PropsWithChildren<ComputedYMapMarkerProps>;
type YMapMarkerR = TReactNamespace.ForwardRefExoticComponent<Prettify<YMapMarkerContainerProps & React.RefAttributes<GenericEntity<ComputedYMapMarkerProps>>>>;
export declare const YMapMarkerReactifyOverride: CustomReactify<YMapMarkerI, YMapMarkerR>;
export {};
