import { ExtractPropTypes, PropType } from "vue";
import { UiTypes } from "@various/constants";
export declare const UiFormPropsOption: {
    readonly data: {
        readonly type: PropType<{
            [name: string]: any;
        }>;
        readonly default: () => void;
    };
    readonly rules: {
        readonly type: PropType<{
            [name: string]: UiTypes.verifyRule[];
        }>;
        readonly default: () => void;
    };
};
export type UiFormProps = ExtractPropTypes<typeof UiFormPropsOption>;
