import type { Component, DataVariableProps, Page } from 'grapesjs'; import type { Option } from '../SelectField'; export interface OptionWithDataVariable extends Option { dataVariable?: DataVariableProps; } export declare const getPageParamValue: (cmp: Component, param: string) => any; export declare function getPageParamValueFromDataVariable(value: DataVariableProps): string; export declare function getPageParamLabelFromDataVariable(value: DataVariableProps): string; export declare const getCmsPageItemOptions: ({ page, component }: { page: Page; component?: Component | undefined; }) => OptionWithDataVariable[];