import type TReact from 'react';
import type { CustomReactify, Prettify } from '../reactify';
import type { GenericEntity } from '../../imperative/Entities';
import type { YMapControl as YMapControlI, YMapControlProps } from "../../imperative/YMapControl/index";
type ComputedYMapControlProps = YMapControlProps & {
    controlElement: HTMLElement;
};
type YMapControlContainerProps = TReact.PropsWithChildren<YMapControlProps>;
type YMapControlR = TReact.ForwardRefExoticComponent<Prettify<YMapControlContainerProps & React.RefAttributes<GenericEntity<ComputedYMapControlProps>>>>;
export declare const YMapControlReactifyOverride: CustomReactify<YMapControlI, YMapControlR>;
export {};
