import { type GraphRelationship, type CreatedBy } from "../../../../../lib/graph-write/dist/index.js"; interface ContactCreateParams { givenName?: string; familyName?: string; email?: string; telephone?: string; jobTitle?: string; source: string; status?: string; accountId?: string; /** Required by the write doctrine — at least one adjacency. */ relationships: GraphRelationship[]; createdBy: CreatedBy; } interface ContactCreateResult { nodeId: string; identifier: string; created: boolean; alreadyExists: boolean; } export declare function contactCreate(params: ContactCreateParams): Promise; export {}; //# sourceMappingURL=contact-create.d.ts.map