import type { FunctionComponent } from 'react'; import React from 'react'; import type { AccessibilityRole, StyleProp, TextStyle, ViewStyle } from 'react-native'; export interface SelectableRowProps { title: string; onPress?: () => void; selected?: boolean; radioButton?: boolean; style?: StyleProp; textStyle?: StyleProp; selectedTextStyle?: StyleProp; markerIconStyle?: StyleProp; renderRadioButton?: () => React.ReactNode; renderCheckMark?: () => React.ReactNode; renderUncheckMark?: () => React.ReactNode; accessibilityLabel?: string; accessibilityRole?: AccessibilityRole; } export declare const SelectableRow: FunctionComponent;