import { HTMLAttributes, ReactNode } from "react"; import { SelectOption } from "../shared/types"; interface SingleSelectOptionProps extends HTMLAttributes { option: T; children?: ReactNode; isDisabled?: boolean; } export declare function SingleSelectOption({ option, children, isDisabled, ...rest }: SingleSelectOptionProps): JSX.Element; export {};