import React from 'react';
import { ICheckboxStandAlone } from './types/checkbox';
/**
 * @description
 * Checkbox component is a input component that can be used to select one or more options from a list of options.
 * It can be used to create a list of options that can be selected.
 * @param {React.PropsWithChildren<ICheckboxStandAlone>} props
 * @returns {JSX.Element}
 * @constructor
 */
export declare const CheckboxStandAlone: React.ForwardRefExoticComponent<ICheckboxStandAlone & React.RefAttributes<HTMLInputElement>>;
