import { SxProps } from "@mui/system";
import { FormItemProps } from "antd-mobile";
import React from "react";
import { Property } from "csstype";
export interface AFormItemProps extends FormItemProps {
    sx?: SxProps;
    flex?: [Property.JustifyContent, Property.AlignContent, Property.FlexDirection] | [Property.JustifyContent, Property.AlignContent];
}
declare const AFormItem: ({ sx, flex, children, ...otr }: AFormItemProps) => React.JSX.Element;
export default AFormItem;
