import { EmailScope, MarketingEmailVariableRO } from '@escapenavigator/types/dist/email-builder'; import { ApiMethodDeclaration } from '..'; type ParamsData = { scope: EmailScope; }; type ResponseData = MarketingEmailVariableRO[]; /** * Returns the variable declaration list available for the given * editor scope. Powers the slash/insert menu of the maily.to-based * email builder. */ export declare const getMarketingEmailVariables: ApiMethodDeclaration; export {};