amis-rpc-design/node_modules/antd/lib/radio/index.d.ts

13 lines
592 B
TypeScript
Raw Normal View History

2023-10-07 19:42:30 +08:00
import type * as React from 'react';
import Group from './group';
import type { RadioProps, RadioRef } from './interface';
import Button from './radioButton';
export { RadioChangeEvent, RadioChangeEventTarget, RadioGroupButtonStyle, RadioGroupContextProps, RadioGroupOptionType, RadioGroupProps, RadioProps, RadioRef, } from './interface';
export { Button, Group };
type CompoundedComponent = React.ForwardRefExoticComponent<RadioProps & React.RefAttributes<RadioRef>> & {
Group: typeof Group;
Button: typeof Button;
};
declare const Radio: CompoundedComponent;
export default Radio;