type CollapsibleProps = { text: string; }; /** * Text container with an expand/collapse button for text over the character limit. * * 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 default function Collapsible({ text }: CollapsibleProps): import("react/jsx-runtime").JSX.Element; export {};