import type { TextInfoType, ParamsType } from './type'; declare function getSize(el: HTMLElement): { wrapW: number; wrapH: number; }; declare function setStyle(el: HTMLElement, { data, colors, maxFontSize }: ParamsType): TextInfoType[][]; export { setStyle, getSize, };