import React from 'react';
import type { FC } from 'react';
export declare const Platform: {
    WEB: string;
    H5: string;
};
interface FormLayoutProps {
    columns?: number;
    platform?: typeof Platform.WEB;
    style?: React.CSSProperties;
}
declare const FormLayout: FC<FormLayoutProps>;
export default FormLayout;
export declare const FormLayoutType = "FormLayout";
