/** * @public */ export type SearchTypeTabsProps = { types: Array<{ value: string; name: string; }>; defaultValue?: string; }; export declare const SearchTypeTabs: (props: SearchTypeTabsProps) => import("react/jsx-runtime").JSX.Element;