import { Colors } from '@/themes'; import React from 'react'; export type CheckboxProps = { value: boolean; label?: string; disabled?: boolean; testID?: string; labelTestID?: string; onChange: (nextValue: boolean) => void; rounded?: boolean; color?: Colors; }; declare const Checkbox: { ({ value, label, disabled, testID, onChange, labelTestID, rounded, color, }: CheckboxProps): React.JSX.Element; displayName: string; }; export default Checkbox;