/**
 * @file 简化版 Flex 布局，主要用于不熟悉 CSS 的开发者
 */
import React from 'react';
import type { FlexItemSchema, FlexProps } from '../types';
export declare class Flex extends React.Component<FlexProps, object> {
    static defaultProps: Partial<FlexProps>;
    constructor(props: FlexProps);
    formatItemClassName: (item: FlexItemSchema, itemClassName: string) => string[];
    render(): JSX.Element;
}
export declare class FlexRenderer extends Flex {
}
