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