import { findOrCreateMarketingAutomation } from './find-or-create-marketing-automation'; import { generateDefaultTemplate } from './generate-default-template'; import { getMarketingAutomations } from './get-marketing-automations'; import { updateMarketingAutomation } from './update-marketing-automation'; type ApiDeclaration = { getMarketingAutomations: typeof getMarketingAutomations; findOrCreateMarketingAutomation: typeof findOrCreateMarketingAutomation; updateMarketingAutomation: typeof updateMarketingAutomation; generateDefaultTemplate: typeof generateDefaultTemplate; }; export declare const marketingAutomationApiDeclaration: ApiDeclaration; export {};