import add from './calc/add'; import subtract from './calc/subtract'; import multiply from './calc/multiply'; import divide from './calc/divide'; import getBase64Img from "./imgfn/getBase64Img"; import urlToBase64 from "./imgfn/urlToBase64"; import base64ToFile from "./imgfn/base64ToFile"; import urlToFile from "./imgfn/urlToFile"; import getBase64ByUrl from "./imgfn/getBase64ByUrl"; import { hello, greet } from "./test"; declare const allFn: { add: typeof add; subtract: typeof subtract; multiply: typeof multiply; divide: typeof divide; getBase64Img: typeof getBase64Img; urlToBase64: typeof urlToBase64; base64ToFile: typeof base64ToFile; urlToFile: typeof urlToFile; getBase64ByUrl: typeof getBase64ByUrl; hello: typeof hello; greet: typeof greet; }; export default allFn; export { add, subtract, multiply, divide, getBase64Img, urlToBase64, base64ToFile, urlToFile, getBase64ByUrl, hello, greet };