import type { ReactNode } from "react"; type Props = { children: ReactNode; /** * Use this prop to apply a custom class name to the root element */ className?: string; /** * Use this prop to control the height of the collapsed content * for example by using Tailwinds line-clamp utility classes. * Hiding the overflow will be handled by the component. * * If this prop is not supplied, the component will not collapse and get the height of the content. * * @example "h-20" * @example "ui:line-clamp-5" */ contentClassName?: string; isCollapsed?: boolean; onClick?: () => void; moreIndicator?: ReactNode; showMoreIndicator?: boolean; }; export declare const Collapse: (props: Props) => import("react").JSX.Element; export {};