import type { JSX } from 'react'; export interface Props { children: JSX.Element | string; } /** * @deprecated Use `` instead. * * https://developers.grafana.com/ui/latest/index.html?path=/docs/information-deprecated-emptysearchresult--docs */ declare const EmptySearchResult: ({ children }: Props) => import("react/jsx-runtime").JSX.Element; export { EmptySearchResult };