import { ImageInputFileToBase64FunctionReturn } from "../../package-shared/types"; type Param = { imageInputFile: File; maxWidth?: number; imagePreviewNode?: HTMLImageElement; }; /** * # Image input File top Base64 */ export default function imageInputFileToBase64({ imageInputFile, maxWidth, imagePreviewNode, }: Param): Promise; export {};