import { type ReactNode } from 'react'; import type { BehaviorTrackingProps } from '../../core/types/behavior-tracking-props.js'; /** * Accepted properties for the Content * @public */ export interface BaseInputContentProps extends BehaviorTrackingProps { /** Elements to be displayed in the Prefix slot. */ children: ReactNode; } /** * Component used for adding elements to the prefix slot. * @internal */ export declare const BaseInputPrefix: (props: BaseInputContentProps & import("react").RefAttributes) => import("react").ReactElement | null; /** * Component used for adding elements to the suffix slot. * @internal */ export declare const BaseInputSuffix: (props: BaseInputContentProps & import("react").RefAttributes) => import("react").ReactElement | null;