import React from 'react'; export declare type DefaultEmptyStateProps = { /** Label for displaying the empty state of the Select list */ label: string; /** No search results message */ searchNoResultsLabel?: string; /** Custom empty options list component - Used because of old Select component */ customComponent?: (() => React.ReactNode) | undefined; }; export declare const DefaultEmptyState: ({ label, searchNoResultsLabel, }: DefaultEmptyStateProps) => JSX.Element;