artwork-react-native
Version:
artwork design master for react-native
21 lines (20 loc) • 599 B
TypeScript
/// <reference types="react" />
/// <reference types="react-native" />
import React from 'react';
import { RadioItemProps } from './PropsType';
import { IRadioStyle } from './style';
export interface IRadioItemNativeProps extends RadioItemProps {
radioStyle?: any;
styles?: IRadioStyle;
}
export default class RadioItem extends React.Component<IRadioItemNativeProps, any> {
static defaultProps: {
styles: {
[x: string]: number & {
__registeredStyleBrand: any;
};
};
};
handleClick: () => void;
render(): JSX.Element;
}