import { DataCollectionResolverProps, DataVariableResolverProps, IDataSourceExporter } from '@studio/editor/src/typeConfigs/dataSources'; import { DataConditionProps } from 'grapesjs'; export declare class EjsExporter implements IDataSourceExporter { getVariableSyntax({ dataResolver }: { dataResolver: DataVariableResolverProps; }): string; getCollectionStartSyntax({ dataResolver }: { dataResolver: DataCollectionResolverProps; }): string; private _sanitizeVariableName; getCollectionEndSyntax(): string; getConditionalStartSyntax({ dataResolver }: { dataResolver: DataConditionProps; }): string; getConditionElseSyntax(): string; getConditionalEndSyntax(): string; private getFullPath; private _parseCondition; private _parseValue; }