/** * Custom hook to resize the context menu frame to fit the active context menu. * * @param @optional activeMenuLabel - label of the currently active menu. * @returns { { resizeContextMenuFrameToActiveMenu: () => { height: number, width: number } } } */ export declare const useResizeContextMenu: (activeMenuLabel: string | undefined) => { width: number; height: number; };