export declare const AnimatedTouchFeedback: ({ x, y, animationDelay, animationDuration, onAnimationDone, }: {
    x: number;
    y: number;
    animationDuration: number;
    animationDelay?: number | undefined;
    onAnimationDone?: (() => void) | undefined;
}) => JSX.Element;
