export declare type LinkStatus = 'success' | 'alreadyExists' | 'differentLinkAlreadyExists' | 'error'; export interface LinkResult { status: LinkStatus; } export declare function link(from: string, to: string): Promise;