UNPKG

438 BTypeScriptView Raw
1import React from 'react';
2import { IBaseProps } from './Base';
3export interface IMarkerProps extends IBaseProps, React.Props<any> {
4 attrs: {
5 x?: number;
6 y?: number;
7 r?: number;
8 symbol?: number;
9 [key: string]: any;
10 };
11 [key: string]: any;
12}
13declare const _default: React.ForwardRefExoticComponent<Pick<IMarkerProps, string | number> & React.RefAttributes<any>>;
14export default _default;