import { type ReactNode } from "react";
import { type CellProps } from "@antmjs/vantui";
import "@antmjs/vantui/es/field/style/less";
export interface FormItemBaseProps extends Omit<CellProps, "value" | "label" | "renderLabel" | "renderTitle" | "title"> {
    title?: ReactNode;
    feedback?: string;
    showFeedback?: boolean;
    alwaysShowFeedback?: boolean;
    feedbackCls?: string;
    error?: boolean;
    description?: ReactNode;
}
export declare const FormItemBase: (props: FormItemBaseProps) => import("react/jsx-runtime").JSX.Element;
