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