import { Valueable } from "./ValueObject"; declare type IonFileData = { name: string; mediaType: string; }; export declare type IonFile = Valueable & IonFileData; export declare const fileToB64: (f: File) => Promise; export declare const fromFile: (f: File) => Promise; export {};