/// import { TailwindFn } from 'twrnc/dist/esm/types'; import { Style } from 'twrnc/dist/esm/types'; declare type Props = { tw: TailwindFn; style?: Style; label?: string; labelStyle?: Style; checkboxStyle?: Style; checkedCheckboxStyle?: Style; value: boolean; onPress: () => void; icon?: string; iconWidth?: number; iconHeight?: number; accessibilityLabel?: string; accessibilityHint?: string; }; declare const Checkbox: ({ tw, label, style, labelStyle, checkboxStyle, checkedCheckboxStyle, value, onPress, icon, iconWidth, iconHeight, accessibilityLabel, accessibilityHint, }: Props) => JSX.Element; export default Checkbox;