import type TReact from "react";
import type { CustomReactify, Prettify } from "../reactify";
import type { YMap as YMapI, YMapProps as YMapPropsI } from "../../imperative/YMap";
declare global {
    namespace JSX {
        interface IntrinsicElements {
            ymaps: TReact.DetailedHTMLProps<TReact.HTMLAttributes<HTMLElement>, HTMLElement>;
        }
    }
}
type YMapContainerProps = TReact.PropsWithChildren<YMapPropsI>;
type YMapR = TReact.ForwardRefExoticComponent<Prettify<YMapContainerProps & TReact.RefAttributes<YMapI>>>;
export declare const YMapReactifyOverride: CustomReactify<YMapI, YMapR>;
export {};
