import { NodeComponentProps } from '../../types/node-component'; import { default as React } from 'react'; export declare function CheckboxNode(props: NodeComponentProps<{ type: 'checkbox' | 'checkbox_input'; checked?: boolean; }>): React.JSX.Element; export default CheckboxNode;