UNPKG

artwork-react-native

Version:

artwork design master for react-native

23 lines (22 loc) 694 B
/// <reference types="react" /> /// <reference types="react-native" /> import React from 'react'; import { RadioProps } from './PropsType'; import { IRadioStyle } from './style'; export interface IRadioNativeProps extends RadioProps { styles?: IRadioStyle; } export default class Radio extends React.Component<IRadioNativeProps, any> { static RadioItem: any; static defaultProps: { styles: { [x: string]: number & { __registeredStyleBrand: any; }; }; }; constructor(props: RadioProps, context: any); componentWillReceiveProps(nextProps: RadioProps): void; handleClick: () => void; render(): JSX.Element; }