///
import { AnimationResult, Controller, SpringValue } from "react-spring";
export default function useHeightAnimation(open: boolean, ops?: {
duration?: number;
onChange?: (result: AnimationResult>, spring: Controller) => void;
}): {
contentRef: import("react").MutableRefObject;
expand: {
height: SpringValue;
};
shouldOverflow: boolean;
};