import { ReactNode } from 'react'; export interface SearchResultListProps { /** * The text to display when there are no results found in the search list. * @type string * @example "No results found." * @default "Sorry, no results found." */ emptyText?: string; /** * The children of the `SearchInputDialog` component. * @type {ReactNode} * @example
* @default undefined */ children?: ReactNode; /** * Indicates whether the search result list is currently loading. * This can be used to show a loading state while search results are being fetched. * @type boolean * @example true * @default false */ isLoading?: boolean; } export declare const SearchResultList: import('react').ForwardRefExoticComponent>;