import React from 'react'; import { ControlProps } from '../../typings'; export interface SelectorControlProps extends ControlProps { selectorType: 'selector' | 'position'; isFollowedByPositionProp: boolean; fullObjectPath: string; onSelectorChange: (objPath: string, val: unknown) => void; } declare const SelectorControl: React.FC; export { SelectorControl };