export interface LookupByNameParams { name: string; accountId: string; labels?: string[]; allowedScopes?: readonly string[]; sliceToken?: string; agentSlug?: string; limit?: number; } export interface LookupByNameHit { nodeId: string; labels: string[]; properties: Record; } export declare function memoryLookupByName(params: LookupByNameParams): Promise; //# sourceMappingURL=memory-lookup-by-name.d.ts.map