/// interface UseWidthOf { ref: React.MutableRefObject; } /** Hook that returns the width of the given node. Updates on resize. */ export declare const useWidthOf: ({ ref }: UseWidthOf) => { width: number; }; export {};