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