@yandex/ymaps3-types
Version:
Types for ymaps3 maps library
9 lines (8 loc) • 651 B
TypeScript
import type TReact from "react";
import type { CustomReactify, Prettify } from "../reactify";
import type { YMapControlButton as YMapControlButtonI, YMapControlButtonProps } from "../../imperative/YMapControl";
import type { GenericEntity } from "../../imperative/Entities";
type YMapControlButtonContainerProps = TReact.PropsWithChildren<YMapControlButtonProps>;
type YMapControlButtonR = TReact.ForwardRefExoticComponent<Prettify<YMapControlButtonContainerProps & React.RefAttributes<GenericEntity<YMapControlButtonProps>>>>;
export declare const YMapControlButtonReactifyOverride: CustomReactify<YMapControlButtonI, YMapControlButtonR>;
export {};