import { StackOverflowHit } from './SearchResults'; import { type SharedCardProps } from './SharedCardUtils'; export declare const removeHTMLTags: (str: string) => string; type StackOverflowResultProps = SharedCardProps & { searchResult: StackOverflowHit; }; declare const StackOverflowResult: ({ searchResult, isFocused, simplifiedForRootDocument, horizontallyCondensed, verticallyCondensed, }: StackOverflowResultProps) => import("react/jsx-runtime").JSX.Element; export default StackOverflowResult;