import React from "react";
import { Props } from "./index.type";
import type { YhwPlaceholderState } from "./rule-data";
/**
 * 【RN】占位符组件，以便，在此位置，进行自定义组件的填充渲染（主要针对CMS配置页中，注意顺序，配置项 + 自定义的元素）
 */
export default class YhwPlaceholderRN extends React.Component<Props, {}> {
    state: YhwPlaceholderState;
    render(): React.JSX.Element;
}
