import { Model } from './schema'; import { Record } from './record'; import { Document } from './types'; export interface CopyOptions { filter?: { [key: string]: string | null; }; } export declare function copyRecord(record: Record, data: Document, options?: CopyOptions): Promise; export declare function getShortestPath(from: Model, to: Model): string[];