import React from 'react'; import { CommandConfig } from '../config'; export interface IProps { config?: CommandConfig; } export declare const CommandsRegistry: React.FC; interface IValueProxy { getValue: () => T; } export declare const createCmdConfig: (addOptions: (config: CommandConfig, container: IValueProxy) => void) => (value?: T) => any; export {};