import { Connector } from "./connector"; import { Command } from "commander"; import { ServerOptions, startServer } from "./server"; export * from "./error"; export * from "./schema"; export { Connector, ServerOptions, startServer }; /** * Starts the connector. * Will read command line arguments or environment variables to determine runtime configuration. * * This should be the entrypoint of your connector * @param connector An object that implements the Connector interface */ export declare function start(connector: Connector): void; export declare function getServeCommand(connector?: Connector): Command; //# sourceMappingURL=index.d.ts.map