import { RefObject } from 'react'; /** * Takes a ref of a video container and returns true if the aspect ratio is less * than 16:9. Can be used to make video iframes behave like `object-fit: cover` does * for images. * * @example * ``` * const containerRef = useRef(null); * const fillHeight = useFillHeight(containerRef); * * ... * *
* *
* ``` */ export default function useFillHeight(containerRef: RefObject): boolean; //# sourceMappingURL=use-fill-height.d.ts.map