import type { ShowFragment } from './show-fragment'; import type { Component } from '../component'; export declare class IDFragment implements ShowFragment { renderRow(component: Component): Promise<{ title: string; content: string; }>; json(component: Component): Promise<{ title: string; json: string; }>; weight: number; }