import { Joi } from '../helpers'; export declare const CONFIGURE = "CHANNELS/CONFIGURE"; export declare const configureActionSchema: Joi.ObjectSchema; export interface IConfigureAction { type: typeof CONFIGURE; payload: { /** * Version of the contracts library used by clients */ contractsVersion: string; }; } export declare const configure: import("../helpers").IActionCreator;