@hhgtech/hhg-components
Version:
Hello Health Group common components
9 lines (8 loc) • 346 B
TypeScript
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 {};