import type React from 'react';
import type { TextInputNonPassthroughProps } from '../../TextInput';
declare const TextInputInnerVisualSlot: React.FC<React.PropsWithChildren<{
    /** Whether the input is expected to ever show a loading indicator */
    hasLoadingIndicator: boolean;
    /** Whether the to show the loading indicator */
    showLoadingIndicator: TextInputNonPassthroughProps['loading'];
    /** Which side of this visual is being rendered */
    visualPosition: 'leading' | 'trailing';
    /** Used to provide a reference for usage with `aria-describedby` */
    id?: string;
    /**
     * A prefix to use for the `data-component` attribute
     */
    componentPrefix?: string;
}>>;
export default TextInputInnerVisualSlot;
//# sourceMappingURL=TextInputInnerVisualSlot.d.ts.map