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 Prefix. * @public */ export interface ButtonPrefixProps extends StylingProps, DataTestId, BehaviorTrackingProps { /** Elements to be displayed in the Button Prefix slot. */ children: ReactNode; } /** * Button Prefix component. * @public */ export declare const Prefix: (props: ButtonPrefixProps & import("react").RefAttributes) => import("react").ReactElement | null;