import { ExpandableGroupProps, ExpandableGroupItemProps } from './types'; /** * Группа элементов с ограничением на число выводимых строк и возможностью показать все. * @param props Свойства. * @return Элемент. */ export declare function ExpandableGroup(props: ExpandableGroupProps): import("react").JSX.Element; export declare const ExpandableItem: import("react").ForwardRefExoticComponent>; export declare const Expandable: { readonly Group: typeof ExpandableGroup; readonly Item: import("react").ForwardRefExoticComponent>; };