/** * @desc 填充空白 * @param elem 需要填充的元素 * @param target 填充参考的父容器元素 * @param func 自处理填充 * 传递参数: * element - 当前元素 * parent - 目标元素 * maxWidth - 预计最大宽度 * maxHeight - 预计最大高度 */ declare const fillSpace: (element: HTMLElement, target: HTMLElement | undefined, func: (this: any, element: HTMLElement, parent: HTMLElement, noPaddingMaxW: number, noPaddingMaxH: number) => void) => void; export default fillSpace;