type Props<T> = {
    noResultsText: string;
    filteredOptions: Array<T>;
};
declare const DefaultEmptyState: <T>({ noResultsText, filteredOptions }: Props<T>) => import("react/jsx-runtime").JSX.Element;
export default DefaultEmptyState;
