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