import type { OptionProps } from './Option.types'; /** * Functional component representing an option within a select dropdown. * * @param props - Props for configuring the Option component. * @returns Element representing the option. */ declare const Option: (props: OptionProps) => import("react/jsx-runtime").JSX.Element; export default Option;