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