siegel
Version:
Web application development ecosystem
9 lines (8 loc) • 369 B
TypeScript
import type { Component, Props, MultiSelectProps, SingleSelectProps } from './types';
declare const componentID = "-ui-radio";
declare const Radio: import("../_internals/types").CoreUIComponent<Props, NonNullableProps<{
theme: Props["theme"];
}>>;
export default Radio;
export { componentID };
export type { Component, Props, MultiSelectProps, SingleSelectProps };