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