import '@wix/ambassador-contacts-v4-contact/types'; import '@wix/ambassador-contacts-v4-contact/http'; import { RequestOptionsFactory } from '@wix/fe-essentials/http-client'; declare module '@wix/ambassador-contacts-v4-contact/types' { interface Contact { name?: string; image?: string; lastSeen?: Date; level?: string; subscription?: string; parentId?: string; breadcrumbs?: { id: string; name: string; }[]; } interface CreateContactRequest { name?: string; level?: string; lastSeen?: Date; createdDate?: Date; } } declare module '@wix/ambassador-contacts-v4-contact/http' { interface MoveContactRequest { contactId?: string; insertAfterId?: string | null; filters?: Record | null; } function moveContact(payload: MoveContactRequest): RequestOptionsFactory; } //# sourceMappingURL=docs-types.d.ts.map