UNPKG

@open-condo/ui

Version:

A set of React UI components for developing applications inside the condo ecosystem

15 lines 694 B
import { Radio as RadioComponent } from './radio'; import { RadioGroup } from './radiogroup'; import './style.less'; type RadioType = typeof RadioComponent & { Group: typeof RadioGroup; }; declare const Radio: RadioType; /** @deprecated we will remove this import in next major release, use {@link Radio.Group} instead */ declare const DeprecatedRadioGroup: import("react").FC<import("./radiogroup").RadioGroupProps> & { ItemGroup: React.FC<import("./radiogroup").ItemGroupProps>; }; export type { RadioProps } from './radio'; export type { RadioGroupProps, ItemGroupProps } from './radiogroup'; export { Radio, DeprecatedRadioGroup as RadioGroup, }; //# sourceMappingURL=index.d.ts.map