import * as z from "zod/v3"; /** * Describes a relationship edge between a source and destination entity */ export type EntityRelationship = { /** * The title or type of relationship. Currently an enum of `CHIEF_OF_STAFF`, `EXECUTIVE_ASSISTANT` */ name: string; /** * Email of the person with whom the relationship exists. Per the example above, either `B` or `C`'s email depending on the relationship. */ email: string; }; /** @internal */ export type EntityRelationship$Outbound = { name: string; email: string; }; /** @internal */ export declare const EntityRelationship$outboundSchema: z.ZodType; export declare function entityRelationshipToJSON(entityRelationship: EntityRelationship): string; //# sourceMappingURL=entityrelationship.d.ts.map