import * as E from "fp-ts/lib/Either"; import * as T from "fp-ts/lib/Task"; import { ImageType } from "./image-processing"; export declare const checkFileWithExtention: (file: File) => E.Either, File>; export declare const resizeFileTo: (imageType: ImageType) => (file: File) => T.Task;