export interface LinkOptions { readonly cliName?: string; readonly quiet?: boolean; } export type LinkCallback = (status: number) => void; export declare const linked: (cmd: LinkOptions, callback?: LinkCallback) => Promise;