You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
845 B

import React from 'react';
import { TextProps, TextStyle, ViewStyle, StyleProp, PressableProps } from 'react-native';
import { CheckBoxIconProps } from './components/CheckBoxIcon';
import { RneFunctionComponent } from '../helpers';
export interface CheckBoxProps extends PressableProps, CheckBoxIconProps {
Component?: typeof React.Component;
iconRight?: boolean;
title?: string | React.ReactElement<{}>;
titleProps?: TextProps;
center?: boolean;
right?: boolean;
containerStyle?: StyleProp<ViewStyle>;
wrapperStyle?: StyleProp<ViewStyle>;
textStyle?: StyleProp<TextStyle>;
disabled?: boolean;
disabledStyle?: StyleProp<ViewStyle>;
disabledTitleStyle?: StyleProp<TextStyle>;
checkedTitle?: string;
fontFamily?: string;
}
export declare const CheckBox: RneFunctionComponent<CheckBoxProps>;