/** * This decorator is applied to a class's member function or property. * It indicates that the definition overrides another definition (of the same name) * from the base class. The base class definition must be marked as \@virtual. * This decorator is currently used for documentation purposes only. * In the future, it may be enforced at runtime. * * @public */ export declare function override(target: object, propertyKey: string | symbol, descriptor: TypedPropertyDescriptor): void; //# sourceMappingURL=override.d.ts.map