/** * read file text * @param el input Element * @param encoding file encoding, eg. utf8, gbk * @example const res = await read(el); */ export default function read(el: HTMLInputElement, encoding?: string): Promise<{}>;