@arco-design/web-react
Version:
Arco Design React UI Library.
11 lines (10 loc) • 514 B
TypeScript
import React, { PropsWithChildren } from 'react';
import { RadioGroupProps, RadioGroupContextProps } from './interface';
export declare const RadioGroupContext: React.Context<RadioGroupContextProps>;
export declare const ClearRadioGroupContext: ({ children }: PropsWithChildren<{}>) => JSX.Element;
declare function Group(baseProps: PropsWithChildren<RadioGroupProps>): JSX.Element;
declare namespace Group {
var displayName: string;
}
export default Group;
export { RadioGroupProps, RadioGroupContextProps };