import type { Diagnostic, Signal } from '../../types.ts'; interface ExampleDensityMetadataProps { metadata: NonNullable; diagnostics?: Diagnostic[]; } export default function ExampleDensityMetadata({ metadata, diagnostics, }: ExampleDensityMetadataProps): import("react").JSX.Element; export {};