import React from 'react'; import { AlignSpec, Base, Color, Container, ContainerItemConfig, ContainerLayoutConfig, DomConfig, KeyMapConfig, MaskConfig, MenuItemEntry, Model, OverflowTwinConfig, PagingToolbarConfig, Panel, PanelCollapserConfig, PanelCollapserOverlayConfig, PanelHeader, RadioConfig, RadioGroup, RadioGroupListeners, ReactJSX, Rectangle, Scroller, ScrollerConfig, StateProvider, TabConfig, Tool, ToolConfig, ToolbarConfig, ToolbarItems, TooltipConfig, VueConfig, Widget } from '@bryntum/gantt'; import { processWidgetContent } from './WrapperHelper.js'; export declare type BryntumRadioGroupProps = { adopt?: HTMLElement | string; align?: AlignSpec | string; alignSelf?: string; anchor?: boolean; appendTo?: HTMLElement | string; ariaDescription?: string; ariaLabel?: string; autoUpdateRecord?: boolean; bbar?: (ContainerItemConfig | string)[] | ToolbarConfig | PagingToolbarConfig | null; bodyCls?: string | object; border?: boolean; bubbleEvents?: object; callOnFunctions?: boolean; catchEventHandlerExceptions?: boolean; centered?: boolean | object; clearable?: boolean; cls?: string | object; collapsed?: boolean; collapsible?: boolean | PanelCollapserConfig | PanelCollapserOverlayConfig; color?: Color; column?: number; config?: object; constrainTo?: HTMLElement | Widget | Rectangle; content?: string; contentElementCls?: string | object; dataField?: string; dataset?: Record; defaultBindProperty?: string; defaultFocus?: ((widget: Widget) => boolean) | string; defaults?: ContainerItemConfig; detectCSSCompatibilityIssues?: boolean; disabled?: boolean | 'inert'; dock?: 'top' | 'bottom' | 'left' | 'right' | 'start' | 'end' | 'header' | 'pre-header' | object; draggable?: boolean | object; drawer?: boolean | { side?: 'start' | 'left' | 'end' | 'right' | 'top' | 'bottom'; size?: string | number; inline?: boolean; autoClose?: boolean | { mousedown?: boolean | string; focusout?: boolean | string; mouseout?: string; }; autoCloseDelay?: number; }; elementAttributes?: Record; extraData?: any; flex?: number | string; floating?: boolean; footer?: object | string; header?: string | boolean | PanelHeader; height?: string | number; hidden?: boolean; hideAnimation?: boolean | object; hideWhenEmpty?: boolean; html?: string | ((widget: Widget) => void) | DomConfig | DomConfig[] | VueConfig | ReactJSX; htmlCls?: string | object; icon?: string | DomConfig; id?: string; ignoreParentReadOnly?: boolean; inline?: boolean; inputFieldAlign?: 'start' | 'end'; insertBefore?: HTMLElement | string; insertFirst?: HTMLElement | string; itemCls?: string; items?: Record | (ContainerItemConfig | MenuItemEntry | Widget)[]; keyMap?: Record; label?: string; labelCls?: string | object; labelPosition?: 'before' | 'above' | 'align-before' | 'auto' | null; labelWidth?: number | null; layout?: string | ContainerLayoutConfig; layoutStyle?: object; lazyItems?: Record | ContainerItemConfig[] | Widget[]; listeners?: RadioGroupListeners; localeClass?: typeof Base; localizable?: boolean; localizableProperties?: string[]; margin?: number | string; maskDefaults?: MaskConfig; masked?: boolean | string | MaskConfig; maxHeight?: string | number; maximizeOnMobile?: number | string; maxWidth?: string | number; minHeight?: string | number; minWidth?: string | number; monitorResize?: boolean | object; name?: string; namedItems?: Record; options?: Record; overflowTwinConfig?: OverflowTwinConfig | null; positioned?: boolean; preventTooltipOnTouch?: boolean; readOnly?: boolean; record?: Model; relayStoreEvents?: boolean; rendition?: string | Record | null; ripple?: boolean | object; role?: string; rootElement?: ShadowRoot | HTMLElement; rtl?: boolean; scrollable?: boolean | ScrollerConfig | Scroller; scrollAction?: 'hide' | 'realign' | null; showAnimation?: boolean | object; showTooltipWhenDisabled?: boolean; span?: number; stateful?: boolean | object | string[]; statefulEvents?: object | string[]; stateId?: string | null; stateProvider?: StateProvider; strictRecordMapping?: boolean; strips?: Record; tab?: boolean | TabConfig; tabBarItems?: ToolbarItems[] | Widget[]; tag?: string; tbar?: (ContainerItemConfig | string)[] | ToolbarConfig | PagingToolbarConfig | null; textAlign?: 'left' | 'center' | 'right' | 'start' | 'end'; textContent?: boolean; title?: string; tools?: Record | null; tooltip?: string | TooltipConfig | null; trapFocus?: boolean; type?: 'radiogroup'; ui?: 'plain' | 'toolbar' | string | object; value?: string | string[]; weight?: number; width?: string | number; x?: number; y?: number; onBeforeDestroy?: ((event: { source: Base; }) => void) | string; onBeforeHide?: ((event: { source: Widget; }) => boolean | void) | string; onBeforeSetRecord?: ((event: { source: Container; record: Model; }) => void) | string; onBeforeShow?: ((event: { source: Widget | any; }) => Promise | boolean | void) | string; onBeforeStateApply?: ((event: { state: any; }) => boolean | void) | string; onBeforeStateSave?: ((event: { state: any; }) => boolean | void) | string; onCatchAll?: ((event: { [key: string]: any; type: string; }) => void) | string; onCollapse?: ((event: { source: Panel; }) => void) | string; onDestroy?: ((event: { source: Base; }) => void) | string; onDirtyStateChange?: ((event: { source: Container; dirty: boolean; }) => void) | string; onElementCreated?: ((event: { element: HTMLElement; }) => void) | string; onExpand?: ((event: { source: Panel; }) => void) | string; onFocusIn?: ((event: { source: Widget; fromElement: HTMLElement; toElement: HTMLElement; fromWidget: Widget; toWidget: Widget; backwards: boolean; }) => void) | string; onFocusOut?: ((event: { source: Widget; fromElement: HTMLElement; toElement: HTMLElement; fromWidget: Widget; toWidget: Widget; backwards: boolean; }) => void) | string; onHide?: ((event: { source: Widget; }) => void) | string; onPaint?: ((event: { source: Widget; firstPaint: boolean; }) => void) | string; onReadOnly?: ((event: { readOnly: boolean; }) => void) | string; onRecompose?: (() => void) | string; onResize?: ((event: { source: Widget; width: number; height: number; oldWidth: number; oldHeight: number; }) => void) | string; onShow?: ((event: { source: Widget; }) => void) | string; onToolClick?: ((event: { source: Tool; tool: Tool; }) => void) | string; }; export declare class BryntumRadioGroup extends React.Component { static instanceClass: typeof RadioGroup; static instanceName: string; processWidgetContent: typeof processWidgetContent; static configNames: string[]; static propertyConfigNames: string[]; static propertyNames: string[]; instance: RadioGroup; element: HTMLElement; componentDidMount(): void; componentWillUnmount(): void; shouldComponentUpdate(nextProps: Readonly, nextState: Readonly<{}>): boolean; render(): React.ReactNode; }