import { ComponentPropsWithRef, ElementType, ReactElement } from 'react'; import { ActionListItemProps } from '../ActionList/ActionList.Item'; export type SearchResultsItemProps = Omit, 'defaultSelected' | 'kind' | 'onSelectionChange' | 'role'>; interface SearchResultsItemComponent { (props: ActionListItemProps & { ref?: ComponentPropsWithRef['ref']; }): ReactElement | null; displayName?: string; } export declare const Item: SearchResultsItemComponent; export {};