index.d.ts 485 B

1234567891011
  1. import Group from './group';
  2. import InternalRadio from './radio';
  3. import Button from './radioButton';
  4. export type { RadioChangeEvent, RadioChangeEventTarget, RadioGroupButtonStyle, RadioGroupContextProps, RadioGroupOptionType, RadioGroupProps, RadioProps, RadioRef, } from './interface';
  5. export { Button, Group };
  6. type CompoundedComponent = typeof InternalRadio & {
  7. Group: typeof Group;
  8. Button: typeof Button;
  9. };
  10. declare const Radio: CompoundedComponent;
  11. export default Radio;