import React from 'react';
import { InputProps, Option } from '../interfaces.js';
export interface InputCheckboxProps {
    checkbox_key?: string;
    OptionComponent?: (props: Option) => React.ReactNode;
}
export declare function InputCheckbox(props: InputCheckboxProps & InputProps): import("react/jsx-runtime").JSX.Element;
