import { InputFieldProps } from '../InputField';
import { DataPathExplorerProps } from './DataPathExplorer';
interface DataPathFieldProps extends Pick<InputFieldProps, 'value' | 'size' | 'label' | 'readOnly' | 'disabled'>, Pick<DataPathExplorerProps, 'onChange' | 'additionalSources'> {
    defaultValue?: string;
    open?: boolean;
    pickerInPopover?: boolean;
    onPickerToggle?: (isOpen: boolean) => void;
}
export declare const DataPathField: ((props: DataPathFieldProps) => import("react/jsx-runtime").JSX.Element) & {
    displayName: string;
};
export {};
