import { MarketingAutomationLocaleDto } from '@escapenavigator/types/dist/profile/marketing-automation/marketing-automation.dto'; import { MarketingAutomationDefaultTemplateDto } from '@escapenavigator/types/dist/profile/marketing-automation/marketing-automation-default-template.dto'; import { MarketingAutomationTypeEnum } from '@escapenavigator/types/dist/profile/marketing-automation/marketing-automation-type.enum'; import { ApiMethodDeclaration } from '..'; /** * `type` идёт path-параметром, остальное (языки, название компании, * логотип) — телом. Ответ — локали с готовым v2-`contentJson`, которые * фронт кладёт в форму без сохранения (сохранение — отдельный PATCH). */ type ParamsData = MarketingAutomationDefaultTemplateDto & { type: MarketingAutomationTypeEnum; }; type ResponseData = MarketingAutomationLocaleDto[]; export declare const generateDefaultTemplate: ApiMethodDeclaration; export {};