import type { BaseDecorator, BaseInterface } from '../Base/types.js'; import type { Base, BaseProps } from '../Base/index.js'; /** * Override the name of the given component. */ export declare function withName(BaseClass: typeof Base, name: string): BaseDecorator;