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 Suffix * @public */ export type SelectSuffixProps = PropsWithChildren & StylingProps & DataTestId & BehaviorTrackingProps; /** * The `Select.Suffix` component allows you to specify any content, that should * be prefixed in the trigger element. The `Select.Suffix` component is only valid * within the `Select.Trigger` and `Select.Option` element. * @example * ```tsx * * * * * * ``` * @public */ export declare function SelectSuffix(props: SelectSuffixProps): null;