import type { DataResolverProps, Editor } from 'grapesjs'; import { AdditionalDataSources, PrimitiveValue } from './types'; interface OpenPickerProps { value?: DataResolverProps | PrimitiveValue; defaultValue?: string; onConfirm?: (value: DataResolverProps) => void; additionalSources?: AdditionalDataSources; editor?: Editor; } export declare const openDataValuePicker: (props: OpenPickerProps) => void; export {};