import type { Ref, VNode } from 'vue'; /** * Return typed content and typing status when typing is enabled. * Or return content directly. */ declare const useTypedEffect: (content: Ref, typingEnabled: Ref, typingStep: Ref, typingInterval: Ref) => [typedContent: Ref, isTyping: Ref]; export default useTypedEffect;