import { DirectiveBinding } from 'vue';
import { IntersectionSettings } from '../hooks/intersection';
export interface TypewriteSettings extends IntersectionSettings {
    interval: number;
    ignorePunctuation: boolean;
}
export default function typewrite(el: HTMLElement, binding: DirectiveBinding): void;
