interface IAutoWidth { (array: number[]): { expectedWidth: number; maxWidth: number; consoleArray: any[]; }; } /** * 根据宽度集获取合适的宽度 * @param array * @returns */ declare const autoWidthBySpace: IAutoWidth; export { autoWidthBySpace };