import type { Ref } from 'react'; import React, { type HTMLAttributes } from 'react'; export interface Props extends HTMLAttributes { forwardRef?: Ref; active?: boolean; disabled?: boolean; } export declare function Option({ forwardRef, active, children, className, disabled, ...attributes }: Props): React.JSX.Element;