import React from 'react';
type UseAnimatedPlaceholderParams = {
    inputRef?: React.MutableRefObject<HTMLInputElement>;
    wrapperRef?: React.MutableRefObject<HTMLDivElement>;
    disabled?: boolean;
};
export declare function useAnimatedPlaceholder({ inputRef, wrapperRef, disabled, }: UseAnimatedPlaceholderParams): void;
export {};
