import { type PropsWithChildren } from 'react'; import { type DataTestId, type StylingProps } from '@dynatrace/strato-components/core'; /** * Accepted properties for the Select Prefix * @public */ export type SelectV2PrefixProps = PropsWithChildren & StylingProps & DataTestId; /** * The `SelectV2.Prefix` component allows you to specify any content, that should * be prefixed in the trigger element. The `SelectV2.Prefix` component is only valid * within the `SelectV2.Trigger` and `SelectV2.Option` element. * @example * ```tsx * * * * * * ``` * @public */ export declare function SelectV2Prefix(props: SelectV2PrefixProps): null;