UNPKG

baseui

Version:

A React Component library implementing the Base design language

12 lines (11 loc) 551 B
import * as React from 'react'; import type { StatefulContainerProps, DefaultStatefulProps, State } from './types'; import type { ChangeEvent } from 'react'; declare class StatefulRadioGroupContainer extends React.Component<StatefulContainerProps, State> { static defaultProps: DefaultStatefulProps; constructor(props: StatefulContainerProps); onChange: (e: ChangeEvent<HTMLInputElement>) => void; stateReducer: (type: string, e: ChangeEvent<HTMLInputElement>) => void; render(): any; } export default StatefulRadioGroupContainer;