import { type CSSProperties, type RefObject } from 'react'; type Options = { bottomOffset?: number; min?: number; includeMarginTop?: boolean; watchRef?: RefObject; }; export declare function useViewportFill(ref: RefObject, { bottomOffset, min, includeMarginTop, watchRef }?: Options): { maxHeight: number; style: CSSProperties; recompute: () => void; }; export {};