export type ImageData = { data: string; mimeType: string; }; export declare const imageDataToBlob: (image: ImageData) => Promise; export declare const nn: (value: T | null | undefined) => T;