import type { Component, ShowFragment } from '@teambit/component'; import type { DeprecationMain } from './deprecation.main.runtime'; export declare class DeprecationFragment implements ShowFragment { private deprecation; constructor(deprecation: DeprecationMain); title: string; renderRow(component: Component): Promise<{ title: string; content: string; }>; json(component: Component): Promise<{ title: string; json: import("./deprecation.main.runtime").DeprecationInfo; }>; weight: number; }