import { default as React } from 'react'; export interface SingleSelectItemProps extends Pick, 'disabled'> { /** The text to the singleSelectItem */ text?: string; /** input id of the singleSelectItem */ inputId?: string; /** Sets the data-testid attribute. */ testId?: string; /** When true, onclick and keyboard events will be passed to the child Button or AnchorLink. */ asChild?: boolean; /** Only use when asChild is set to true and only pass one child */ children?: React.ReactNode; /** Value for this singleSelectItem option - used by the parent wrapper to keep track of the context */ value?: string; /** aria-describedby passthrough if needed */ ['aria-describedby']?: string; /** Marks this option as initially selected */ defaultSelected?: boolean; /** Ref that is passed to the component */ ref?: React.Ref; } export declare const SingleSelectItem: React.FC; export default SingleSelectItem;