import * as React from 'react';
import { TextFieldProps } from '@mui/material/TextField';
import { FormControlOwnProps } from '@mui/material/FormControl';
import type { ExportedPickersSectionListProps } from "../PickersSectionList/index.js";
import type { UseFieldInternalProps, UseFieldReturnValue } from "../internals/hooks/useField/index.js";
import type { PickersTextFieldProps } from "../PickersTextField/index.js";
import { BaseSingleInputFieldProps, FieldRangeSection, PickerRangeValue, PickerValidValue } from "../internals/models/index.js";
import { PickerOwnerState } from "./pickers.js";
import type { ExportedPickerFieldUIProps } from "../internals/components/PickerFieldUI.js";
export type FieldSectionType = 'year' | 'month' | 'day' | 'weekDay' | 'hours' | 'minutes' | 'seconds' | 'meridiem' | 'empty';
export type FieldSectionContentType = 'digit' | 'digit-with-letter' | 'letter';
export interface FieldSection {
  /**
   * Value of the section, as rendered inside the input.
   * For example, in the date `May 25, 1995`, the value of the month section is "May".
   */
  value: string;
  /**
   * Format token used to parse the value of this section from the date object.
   * For example, in the format `MMMM D, YYYY`, the format of the month section is "MMMM".
   */
  format: string;
  /**
   * Maximum length of the value, only defined for "digit" sections.
   * Will be used to determine how many leading zeros should be added to the value.
   */
  maxLength: number | null;
  /**
   * Placeholder rendered when the value of this section is empty.
   */
  placeholder: string;
  /**
   * Type of the section.
   */
  type: FieldSectionType;
  /**
   * Type of content of the section.
   * Will determine if we should apply a digit-based editing or a letter-based editing.
   */
  contentType: FieldSectionContentType;
  /**
   * If `true`, the value of this section is supposed to have leading zeroes when parsed by the date library.
   * For example, the value `1` should be rendered as "01" instead of "1".
   */
  hasLeadingZerosInFormat: boolean;
  /**
   * If `true`, the value of this section is supposed to have leading zeroes when rendered in the input.
   * For example, the value `1` should be rendered as "01" instead of "1".
   */
  hasLeadingZerosInInput: boolean;
  /**
   * If `true`, the section value has been modified since the last time the sections were generated from a valid date.
   * When we can generate a valid date from the section, we don't directly pass it to `onChange`,
   * Otherwise, we would lose all the information contained in the original date, things like:
   * - time if the format does not contain it
   * - timezone / UTC
   *
   * To avoid losing that information, we transfer the values of the modified sections from the newly generated date to the original date.
   */
  modified: boolean;
  /**
   * Separator displayed before the value of the section in the input.
   * If it contains escaped characters, then it must not have the escaping characters.
   * For example, on Day.js, the `year` section of the format `YYYY [year]` has an end separator equal to `year` not `[year]`
   */
  startSeparator: string;
  /**
   * Separator displayed after the value of the section in the input.
   * If it contains escaped characters, then it must not have the escaping characters.
   * For example, on Day.js, the `year` section of the format `[year] YYYY` has a start separator equal to `[year]`
   */
  endSeparator: string;
  /**
   * If `true`, the `endSeparator` is a format separator (i.e. ":" or "/").
   */
  isEndFormatSeparator?: boolean;
}
type IsAny<T> = boolean extends (T extends never ? true : false) ? true : false;
export type InferFieldSection<TValue extends PickerValidValue> = IsAny<TValue> extends true ? FieldSection : TValue extends PickerRangeValue ? FieldRangeSection : FieldSection;
export interface FieldRef<TValue extends PickerValidValue> {
  /**
   * Returns the sections of the current value.
   * @returns {InferFieldSection<TValue>[]} The sections of the current value.
   */
  getSections: () => InferFieldSection<TValue>[];
  /**
   * Returns the index of the active section (the first focused section).
   * If no section is active, returns `null`.
   * @returns {number | null} The index of the active section.
   */
  getActiveSectionIndex: () => number | null;
  /**
   * Updates the selected sections.
   * @param {FieldSelectedSections} selectedSections The sections to select.
   */
  setSelectedSections: (selectedSections: FieldSelectedSections) => void;
  /**
   * Focuses the field.
   * @param {FieldSelectedSections | FieldSectionType} newSelectedSection The section to select once focused.
   */
  focusField: (newSelectedSection?: number | FieldSectionType) => void;
  /**
   * Returns `true` if the focused is on the field input.
   * @returns {boolean} `true` if the field is focused.
   */
  isFieldFocused: () => boolean;
}
export type FieldSelectedSections = number | FieldSectionType | null | 'all';
export interface FieldOwnerState extends PickerOwnerState {
  /**
   * `true` if the field is disabled, `false` otherwise.
   */
  isFieldDisabled: boolean;
  /**
   * `true` if the field is read-only, `false` otherwise.
   */
  isFieldReadOnly: boolean;
  /**
   * `true` if the field is required, `false` otherwise.
   */
  isFieldRequired: boolean;
  /**
   * The direction of the field.
   * Is equal to "ltr" when the field is in left-to-right direction.
   * Is equal to "rtl" when the field is in right-to-left direction.
   */
  fieldDirection: 'ltr' | 'rtl';
}
/**
 * Props the `slotProps.field` of a Picker can receive.
 */
export type PickerFieldSlotProps<TValue extends PickerValidValue, TEnableAccessibleFieldDOMStructure extends boolean> = ExportedPickerFieldUIProps & Pick<UseFieldInternalProps<TValue, TEnableAccessibleFieldDOMStructure, unknown>, 'shouldRespectLeadingZeros' | 'readOnly'> & React.HTMLAttributes<HTMLDivElement> & {
  ref?: React.Ref<HTMLDivElement>;
};
/**
 * Props the text field receives when used inside a single input Picker.
 * Only contains what the MUI components are passing to the text field, not what users can pass using the `props.slotProps.field` and `props.slotProps.textField`.
 */
export type BaseSingleInputPickersTextFieldProps<TEnableAccessibleFieldDOMStructure extends boolean> = Omit<UseFieldReturnValue<TEnableAccessibleFieldDOMStructure, BaseSingleInputFieldProps>, 'slots' | 'slotProps' | 'clearable' | 'onClear' | 'openPickerButtonPosition' | 'clearButtonPosition' | 'openPickerAriaLabel'>;
/**
 * Props the built-in text field component can receive.
 */
export type BuiltInFieldTextFieldProps<TEnableAccessibleFieldDOMStructure extends boolean> = TEnableAccessibleFieldDOMStructure extends false ? Omit<TextFieldProps, 'autoComplete' | 'error' | 'maxRows' | 'minRows' | 'multiline' | 'placeholder' | 'rows' | 'select' | 'SelectProps' | 'type'> : Partial<Omit<PickersTextFieldProps, keyof ExportedPickersSectionListProps>>;
export interface PickerTextFieldOwnerState extends FieldOwnerState {
  /**
   * `true` if the value of the field is currently empty.
   */
  isFieldValueEmpty: boolean;
  /**
   * `true` if the field is focused, `false` otherwise.
   */
  isFieldFocused: boolean;
  /**
   * `true` if the field has an error, `false` otherwise.
   */
  hasFieldError: boolean;
  /**
   * The size of the input.
   */
  inputSize: Exclude<FormControlOwnProps['size'], undefined>;
  /**
   * The color of the input.
   */
  inputColor: Exclude<FormControlOwnProps['color'], undefined>;
  /**
   * `true` if the input takes up the full width of its container.
   */
  isInputInFullWidth: boolean;
  /**
   * `true` if the input has a start adornment, `false` otherwise.
   */
  hasStartAdornment: boolean;
  /**
   * `true` if the input has an end adornment, `false` otherwise.
   */
  hasEndAdornment: boolean;
  /**
   * `true` if the input has a label, `false` otherwise.
   */
  inputHasLabel: boolean;
  /**
   * `true` if the input label is shrunk, `false` otherwise.
   */
  isLabelShrunk: boolean;
}
export {};