/**
 * @license Copyright (c) 2003-2022, RAONWIZ DevTean. All rights reserved.
 */
/**
 * Basic typings for the RaonkEditor elements.
 */
export declare namespace RaonkEditor {
    /**
     * The Component constructor.
     */
    interface Config {
        [key: string]: any;
    }
    /**
     * The RaonkEditor component interface runtimes.
     */
    const enum Runtimes {
        HTML5 = "html5",
        AGENT = "agent"
    }
    /**
     * The event object passed to RaonkEditor event callbacks.
     */
    interface EventInfo {
        readonly componentName: string;
        readonly paramObj: any;
    }
}
