import React from 'react'; interface Props { val?: boolean; } /** * 指示本地图像压缩设置将覆盖文档默认的压缩设置。 * * 参考文档:https://docs.microsoft.com/zh-cn/dotnet/api/documentformat.openxml.office2010.drawing.uselocaldpi?view=openxml-2.8.1 */ declare const UseLocalDpi: ({ val }: Props) => React.DOMElement<{ [x: string]: string; }, Element>; export default UseLocalDpi;