/**
 * @describe 组件调试
 * @author fanyihuo
 * @since 20210816
 */
/// <reference types="react" />
interface IProps {
    /** 是否纯净模式 */
    pure?: boolean;
}
export default function Debug(props: IProps): JSX.Element | null;
export {};
