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