import { type PropsWithChildren } from 'react'; import { type DataTestId, type StylingProps } from '@dynatrace/strato-components/core'; /** * Accepted properties for the Select EmptyState * @public */ export type SelectV2EmptyStateProps = PropsWithChildren & StylingProps & DataTestId; /** * The `SelectV2.EmptyState` component allows you to specify any content, that should * be shown when no select options are available. The `SelectV2.EmptyState` component * is only valid within the `SelectV2.Content` element. * @example * ```tsx * * * No items found. * * * ``` * @public */ export declare function SelectV2EmptyState(props: SelectV2EmptyStateProps): null;