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