import type { ExtractPropTypes, Ref, Slots } from 'vue'; export type HintSlotProps = Readonly>; /** * Return a vue component (HintSlot) to render and manage hint, errors, valid, loading state and messages * @param {HintSlotProps} propsOrRef vue props * @param {Slots} slots vue slots * @returns {Component} vue component */ export declare function HintSlotFactory(propsOrRef: HintSlotProps | Ref, slots: Slots): { hasInvalidLabelOrSlot: globalThis.ComputedRef; hasHintLabelOrSlot: globalThis.ComputedRef; hasValidLabelOrSlot: globalThis.ComputedRef; hasLoadingLabelOrSlot: globalThis.ComputedRef; hintSlotScope: globalThis.ComputedRef<{ modelValue: unknown; valid: boolean; invalid: boolean; loading: boolean; }>; HintSlot: import("vue").DefineComponent, { isVisible: globalThis.ComputedRef; invalidLabel: globalThis.ComputedRef; validLabel: globalThis.ComputedRef; loadingLabel: globalThis.ComputedRef; hintLabel: globalThis.ComputedRef; hasInvalidLabelOrSlot: globalThis.ComputedRef; hasValidLabelOrSlot: globalThis.ComputedRef; hasLoadingLabelOrSlot: globalThis.ComputedRef; hasHintLabelOrSlot: globalThis.ComputedRef; }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly> & Readonly<{}>, { tag: string; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>; }; export default HintSlotFactory;