import React from 'react';
import { type TextStyle, type StyleProp } from 'react-native';
export type TypeWriterEffectProps = {
    content: string;
    maxDelay?: number;
    minDelay?: number;
    onTyped?: (char: string, currentCharIndex: number) => void;
    onTypingEnd?: () => void;
    style?: StyleProp<TextStyle>;
    vibration?: boolean;
    backspaceEffect?: boolean;
};
export default function TypeWriterEffect(props: TypeWriterEffectProps): React.JSX.Element;
//# sourceMappingURL=index.d.ts.map