import { RefObject } from 'react'; interface Options { enabled: boolean; property?: 'height' | 'maxHeight'; round?: boolean; } export declare const useSyncMaxHeight: (sourceRef: RefObject, targetRef: RefObject, { enabled, property, round }: Options) => void; export {};