import * as React from 'react'; import { GroupContainer, type GroupContainerProps } from './GroupContainer'; import { GroupDescription } from './GroupDescription'; import { GroupExpandedContent } from './GroupExpandedContent'; import { GroupHeader } from './GroupHeader'; export interface GroupProps extends GroupContainerProps { /** * Элемент заголовка группы. */ header?: React.ReactNode; /** * Подпись под содержимым. */ description?: React.ReactNode; } /** * @see https://vkui.io/components/group */ export declare const Group: React.FC & { Container: typeof GroupContainer; Header: typeof GroupHeader; Description: typeof GroupDescription; ExpandedContent: typeof GroupExpandedContent; }; //# sourceMappingURL=Group.d.ts.map