import { ProtocolStack } from "./helpers"; export declare const optionDefinitions: ({ name: string; defaultOption: boolean; type?: undefined; multiple?: undefined; } | { name: string; type: StringConstructor; defaultOption?: undefined; multiple?: undefined; } | { name: string; type: StringConstructor; multiple: boolean; defaultOption?: undefined; })[]; /** * Make sure config is set up properly and start initializtion. */ export declare const sanitizeAndInit: () => Promise; /** * Handle configuration of the entire protocol, including messaging stack and connext diamond * contracts, across all listed domains. * * Should effectively be a diagnostic on the whole protocol, making sure that everything that * requires configuration and/or setup has been done so properly. */ export declare const initProtocol: (protocol: ProtocolStack) => Promise; //# sourceMappingURL=init.d.ts.map