import { type ReactNode } from 'react'; import type { BehaviorTrackingProps } from '../../core/types/behavior-tracking-props.js'; import { type DataTestId } from '../../core/types/data-props.js'; import { type StylingProps } from '../../core/types/styling-props.js'; /** * Accepted properties for the Button Suffix. * @public */ export interface ButtonSuffixProps extends StylingProps, DataTestId, BehaviorTrackingProps { /** Elements to be displayed in the Button Suffix slot. */ children: ReactNode; } /** * Button Suffix component. * @public */ export declare const Suffix: (props: ButtonSuffixProps & import("react").RefAttributes) => import("react").ReactElement | null;