import { Tween } from '../tweening/Tween.js'; /** * Represents the prototype for extended Material functionality. */ export interface MaterialExtPrototype { /** * Initiates a Tween animation for the material. * @param id - Unique identifier. If you start a new tween, the old one with the same id (if specified) will be stopped. * @template T - The type of the target. * @returns A Tween instance for further configuration. */ tween(id?: string): Tween; } //# sourceMappingURL=Material.d.ts.map