import type { DataVariableProps, Editor } from 'grapesjs'; import { AdditionalDataSources } from '../../utils/types'; import { DataVariableResolverProps } from '../DataVariablePicker'; export declare function resolvePath(dataResolver: DataVariableResolverProps): string; export declare function resolveDataFromPath(path: string, collectionsStateMap: Record): Partial; export declare const getPathFromDataResolver: (props: { dataResolver?: DataVariableResolverProps; value?: string; }) => string; export declare const getResolvedPathFromDataResolver: (props: { editor?: Editor | undefined; value: string; defaultValue?: string | undefined; dataResolver?: DataVariableResolverProps | undefined; additionalSources?: AdditionalDataSources | undefined; }) => any;