import React from 'react'; import { Radius } from './index'; interface ItemProps { radius: Radius; onRadiusStart: (cursor: string) => void; } export interface RadiusObjectType { [key: string]: string; } declare function RadiusItem(props: ItemProps): JSX.Element; declare const _default: React.MemoExoticComponent; export default _default;