export declare type Callback = (err: any, value: T) => void; export declare type SBot = any; export declare type Config = { path: string; caps: string; remote: any; port: number; manifest: any; key: string; }; export declare type SSBClientFunction = { (cb: Callback): void; (opts: object, cb: Callback): void; (keys?: object | null, opts?: object | null, cb?: Callback): void; };