import { type FormItemProps, type FormItemSlots } from '../form/common';
declare function __VLS_template(): Readonly<FormItemSlots> & FormItemSlots;
declare const __VLS_component: import("vue").DefineComponent<FormItemProps, {
    validate: (trigger?: string | string[]) => Promise<void>;
    reset: () => Promise<void>;
    clearValidate: () => void;
    scrollToField: () => void;
    validateMessage: import("vue").Ref<string>;
    validateState: import("vue").Ref<import("../form/common").ValidateState>;
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<FormItemProps> & Readonly<{}>, {
    rootStyle: string | false | import("vue").CSSProperties | import("vue").StyleValue[] | null;
    rootClass: string;
    name: import("../form/common").FieldName;
    label: string;
    error: string;
    required: boolean;
    rules: import("../form/Validator").Rule | import("../form/Validator").Rule[];
    validateTrigger: import("../form/common").TriggerType;
    direction: "horizontal" | "vertical";
    labelWidth: string;
    labelAlign: "start" | "center" | "end";
    labelValign: "start" | "center" | "end";
    starPosition: "left" | "right";
    contentPosition: "left" | "right";
    hideStar: boolean;
    showError: boolean;
    context: import("../form/common").FormContext;
    inlaid: boolean;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
    new (): {
        $slots: S;
    };
};
