import { count } from './count'; import { create } from './create'; import { createComplaint } from './create-complaint'; import { exportClients } from './export'; import { gdprExport } from './gdpr-export'; import { getAll } from './get-all'; import { getBillingDefaults } from './get-billing-defaults'; import { getComplaints } from './get-complaints'; import { getOne } from './get-one'; import { getUtmTouchpoints } from './get-utm-touchpoints'; import { query } from './query'; import { remove } from './remove'; import { restoreMarketingAudience } from './restore-marketing-audience'; import { revealContacts } from './reveal-contacts'; import { search } from './search'; import { suggestUtm } from './suggest-utm'; import { toggleBlock } from './tobble-block'; import { update } from './update'; type ApiDeclaration = { count: typeof count; exportClients: typeof exportClients; create: typeof create; createComplaint: typeof createComplaint; getComplaints: typeof getComplaints; toggleBlock: typeof toggleBlock; update: typeof update; query: typeof query; search: typeof search; getAll: typeof getAll; getOne: typeof getOne; getBillingDefaults: typeof getBillingDefaults; getUtmTouchpoints: typeof getUtmTouchpoints; suggestUtm: typeof suggestUtm; remove: typeof remove; restoreMarketingAudience: typeof restoreMarketingAudience; revealContacts: typeof revealContacts; gdprExport: typeof gdprExport; }; export declare const clientsApiDeclaration: ApiDeclaration; export {};