import type { Session as Neo4jSession } from "neo4j-driver"; export declare class IngestUserFacingError extends Error { readonly userFacing = true; constructor(message: string); } export interface VerifyParticipantElementIdsInput { session: Neo4jSession; accountId: string; ownerElementId: string; participantElementIds: readonly string[]; } export interface VerifyParticipantElementIdsResult { participantsResolved: number; } export declare function verifyParticipantElementIds(input: VerifyParticipantElementIdsInput): Promise; //# sourceMappingURL=sender-bind.d.ts.map