/** 声明：该组件代码copy了fusion/next的box组件后做修改 */
import React, { Component } from 'react';
import { CnBoxProps } from './types';
/**
 * Box
 */
declare class CnBox extends Component<CnBoxProps, any> {
    static defaultProps: {
        prefix: string;
        direction: string;
        wrap: boolean;
    };
    render(): React.JSX.Element;
}
export { CnBox };
