import React from 'react'; import { type StyleProp, type ViewStyle } from 'react-native'; export interface InlineCheckboxProps { /** * Control whether the checkbox is checked */ checked?: boolean; /** * Checkbox's description. */ description?: string; /** * Whether the checkbox is disabled */ disabled?: boolean; /** * Event handler. */ onPress?: () => void; /** * Additional style. */ style?: StyleProp; /** * Testing id of the component. */ testID?: string; /** * Readonly of the checkbox. */ readonly?: boolean; /** * Size of the checkbox. Can be 'medium' or 'large'. */ size?: 'medium' | 'large'; } declare const InlineCheckbox: ({ checked, description, disabled, onPress, style, testID, readonly, size, }: InlineCheckboxProps) => React.JSX.Element; export default InlineCheckbox;