import * as React from 'react'; import './index.scss'; export interface HhContainerProps { title?: string; style?: 'object'; direction?: 'row' | 'column'; } /** * 由 Card 组成的 container 容器 * @param title * @param children * @param otherProps * @constructor */ declare const HhContainer: React.FC; export default HhContainer;