import React from 'react';
import { IOptionStandAlone } from './types/option';
declare const OptionStandAlone: React.ForwardRefExoticComponent<IOptionStandAlone & React.RefAttributes<HTMLElement | undefined>>;
/**
 * @description
 * Option component is used to render an option.
 * @param {React.PropsWithChildren<IOptionStandAlone>} props
 * @returns {JSX.Element}
 * @constructor
 * @example
 * <Option label="Option 1" />
 */
export { OptionStandAlone };
