/**
* Represents a file in the gallery.
*/
export interface GalleryFileInfo {
/** The MIME type of the file (optional). */
mimeType?: string;
/** The name of the file (optional). */
filename?: string;
/** The binary data of the file. */
data: number[];
}