import { Storage } from "./storage"; /** * SignatoryServer - is the server routing side of signatory * It instantiates the Signatory server server. */ export declare class SignatoryServer { port: string; storage: Storage; constructor(storage: Storage, port: string); /** * start - Launches signatory */ start(): Promise; stop(): Promise; private setupTransport; }