import { ComponentMeta } from './types'; /** * Builds the standardized Autodocs description shown at the top of every * component's docs page. Sourced from the component's `ComponentMeta` so the * usage guidance (do/don't) and accessibility notes stay in sync with the * machine-readable registry. * * Usage in a `*.stories.tsx`: * * import componentMeta from './Snackbar.meta'; * // ... * parameters: { docs: { description: { component: componentDoc(componentMeta) } } } */ export declare function componentDoc(meta: ComponentMeta, summary?: string): string;