UNPKG

@docsvision/webclient

Version:

Type definitions for DocsVision WebClient scripts and extensions.

15 lines (14 loc) 411 B
/// <reference types="react" /> /** Свойства для {@link RibbonGroup} */ export interface IRibbonGroupProps { className?: string; children?: React.ReactNode; weight?: number; } /** * Группа для {@link Ribbon ленты}. */ export declare const RibbonGroup: import("styled-components").StyledComponent<"div", any, { className: string; } & IRibbonGroupProps, "className">;