/**
 * Interface for texture memory
 */
interface TextureMemory {
    /**
     * @deprecated
     */
    image?: string;
    alias?: string;
    url: string;
}

export type { TextureMemory as default };
