import { ImageEditorImageInterface, } from './image-editor-image.interface'; export interface ImageEditorTextInterface extends ImageEditorImageInterface { text: string; textColorHex: string; textFontSize: number; textFontFamily: string; }