declare const appendHTML: (dom: any, child: any) => void;
declare const appendDom: (dom: any, child: any) => void;
declare const createDom: (name: any) => any;
declare const setStyle: (dom: any, option: any) => void;
declare const isParent: (targetElement: any, parentClass: any) => any;
declare const getTextWidth: (text: any, fontSize?: number) => number;
export { appendHTML, appendDom, createDom, setStyle, isParent, getTextWidth };