export declare function getNodeInlineStyleDimensions({ width, height, initialWidth, initialHeight, measuredWidth, measuredHeight }: { | |
width?: number; | |
height?: number; | |
initialWidth?: number; | |
initialHeight?: number; | |
measuredWidth?: number; | |
measuredHeight?: number; | |
}): { | |
width: string | undefined; | |
height: string | undefined; | |
}; | |