import type { Contract } from 'autumndb'; import type { ActionHandlerRequest, WorkerContext } from '../types'; /** * @summary Add link between user card and another card * @function * * @param context - execution context * @param request - action request * @param fromCard - card to link from * @param userCard - user card to link to */ export declare function addLinkCard(context: WorkerContext, request: ActionHandlerRequest, fromCard: Contract, userCard: Contract): Promise;