import { Component } from 'react'; import AgreeItem from './AgreeItem'; import { CheckboxProps } from './Checkbox'; import CheckboxItem from './CheckboxItem'; export default class Checkbox extends Component { static AgreeItem: typeof AgreeItem; static CheckboxItem: typeof CheckboxItem; render(): JSX.Element; }