import { type Animation } from '@arwes/animated';
import type { AnimateTextProps } from '../types.js';
type AnimateTextDecipherProps = AnimateTextProps & {
    characters?: string;
};
declare const animateTextDecipher: (props: AnimateTextDecipherProps) => Animation;
export type { AnimateTextDecipherProps };
export { animateTextDecipher };
