import { InputInternalProps } from '../../Input'; import { InputHTMLAttributes } from 'react'; type Segment = { label: string; token: string; end: string; value: string; }; export declare const useInputComponent: (inputProps: InputInternalProps["inputProps"]) => { step: number; componentProps: InputHTMLAttributes; segments: Segment[]; }; export {};