import { Logger } from "../../create-logger"; import { AppConfig } from "../../types"; export declare type Flags = { readonly interactive: boolean; readonly home?: string; readonly keyFile?: string; readonly mnemonic?: string; readonly srcTrust?: string; readonly destTrust?: string; }; export declare type Options = { readonly home: string; readonly mnemonic: string; readonly src: string; readonly dest: string; readonly srcTrust: number | null; readonly destTrust: number | null; }; export declare function connect(flags: Flags, logger: Logger): Promise; export declare function run(options: Options, app: AppConfig, logger: Logger): Promise;