import type { Ref } from 'vue'; import type { IInlineProps } from '../../composables/base/useInline.js'; export declare const ValidateProps: { novalidate: { type: BooleanConstructor; }; wasVlidated: { type: BooleanConstructor; default: boolean; }; }; export interface IValidateionProps extends IInlineProps { novalidate?: boolean; wasVlidated?: boolean; } export declare function useValidate

(props: P, elementRef: Ref): { class: import("vue").ComputedRef<{ 'was-validated': boolean | undefined; }>; attr: import("vue").ComputedRef<{ [name]: string | undefined; }>; event: { onSubmit: (event: Event) => void; }; };