export declare const countStr: (txt: string, fullVal?: number, halfVal?: number, enterVal?: number) => number; export declare const camelCase: (...args: string[]) => string; export declare const kebabCase: (...args: string[]) => string; export declare const paddingLeft: (target: string | undefined, len: number, paddingChar: string) => any; export declare const htmlEncode: (txt: string) => string; export declare const htmlDecode: (val: string) => any; export declare const template: (temp: string, data: object) => any;