type NarrativeCollapsibleProps = { text: string; }; /** * Text container with an expand/collapse control for long narrative text. * * Uses `max-height` + `overflow: hidden` when collapsed (not `line-clamp`), because * `white-space: pre-wrap` is incompatible with `-webkit-line-clamp` in browsers. * * @internal */ export declare function NarrativeCollapsible({ text }: NarrativeCollapsibleProps): import("react/jsx-runtime").JSX.Element; export {};