import { UseFieldParameters, UseFieldProps, UseFieldReturnValue } from "./useField.types.js"; import { InferFieldSection } from "../../../models/index.js"; import { PickerValidValue } from "../../models/index.js"; export declare const addPositionPropertiesToSections: (sections: InferFieldSection[], localizedDigits: string[], isRtl: boolean) => FieldSectionWithPositions[]; export declare const useFieldV6TextField: >(parameters: UseFieldParameters) => UseFieldReturnValue; type FieldSectionWithPositions = InferFieldSection & { /** * Start index of the section in the format */ start: number; /** * End index of the section in the format */ end: number; /** * Start index of the section value in the input. * Takes into account invisible unicode characters such as \u2069 but does not include them */ startInInput: number; /** * End index of the section value in the input. * Takes into account invisible unicode characters such as \u2069 but does not include them */ endInInput: number; }; export {};