/**
 * @file 无界容器组件
 */
import React from 'react';
import type { WujieProps } from './types';
export default class Wujie extends React.Component<WujieProps> {
    static defaultProps: Partial<WujieProps>;
    wujie: any;
    wujieRef: React.RefObject<HTMLDivElement>;
    constructor(props: WujieProps);
    componentDidMount(): void;
    getOptPorps: () => any;
    clorizeElement: () => void;
    handleWujie(wujie: any): void;
    render(): React.ReactNode;
}
export declare class WujieRenderer extends Wujie {
}
