import React from "react"; import { StyleProp, ViewStyle } from "react-native"; interface Props { checked?: boolean; onChange?: (value: boolean) => void; text?: string; containerStyle?: StyleProp; checkBoxStyle?: StyleProp; iconSize?: number; } declare const _default: React.NamedExoticComponent; export default _default;