import React from 'react'; import type { CheckboxProps } from './types'; export default function Checkbox({ accessibilityRole, iconStyle, disabled, label, labelPosition, labelStyle, onChange, selected, size, style, value, ...rest }: CheckboxProps): React.JSX.Element;