import React from 'react'; interface UseLabelHeightProps { labelRef: React.RefObject; inputRef: React.RefObject; } interface UseLabelHeight { ({ labelRef, inputRef }: UseLabelHeightProps): { isLabelHigher: boolean; }; } declare const useLabelHeight: UseLabelHeight; export default useLabelHeight;