import type { PropType } from 'vue'; export declare const formProps: { /** ***************************************************************** */ /** ***************************************************************** */ /** ***************************************************************** */ /** ***************************************************************** */ colProps: { type: PropType>; }; rolProps: { type: PropType>; default: () => { gutter: number; }; }; showActionBar: { type: BooleanConstructor; default: boolean; }; actionBarColProps: { type: PropType>; }; showSubmitButton: { type: BooleanConstructor; default: boolean; }; showResetButton: { type: BooleanConstructor; default: boolean; }; submitButtonOptions: { type: PropType>; default: () => { type: string; actionType: string; label: string; icon: import("vue").VNode; }; }; resetButtonOptions: { type: PropType>; default: () => { actionType: string; label: string; icon: import("vue").VNode; }; }; /** ***************************************************************** */ /** ***************************************************************** */ /** ***************************************************************** */ /** ***************************************************************** */ model: { type: ObjectConstructor; default: () => {}; }; schemas: { type: PropType[]>>; default: () => never[]; }; rules: { type: PropType>>>>; default: () => {}; }; scrollToError: { type: BooleanConstructor; default: boolean; }; hideRequiredAsterisk: { type: BooleanConstructor; default: boolean; }; showMessage: { type: BooleanConstructor; default: boolean; }; inlineMessage: { type: BooleanConstructor; default: boolean; }; statusIcon: { type: BooleanConstructor; default: boolean; }; validateOnRuleChange: { type: BooleanConstructor; default: boolean; }; };