/**
 * @license
 * Copyright Paperbits. All Rights Reserved.
 *
 * Use of this source code is governed by an MIT-style license that can be
 * found in the LICENSE file and at https://paperbits.io/license/mit.
 */

/**
 * Runtime component decorator configuration.
 */
export interface ReactRuntimeComponentConfig {
    /**
     * HTML element selector, e.g. "button".
     */
    selector: string;
}
