import type { SelectorProps } from '../../../interface'; import type { InputProps } from '../Input'; export default function useInputProps(props: Pick & { id?: string | string[]; value?: DateType[]; invalid?: boolean | [boolean, boolean]; placeholder?: string | [string, string]; disabled?: boolean | [boolean, boolean]; onChange: (value: DateType | null, index?: number) => void; allHelp: boolean; activeIndex?: number | null; }, /** Used for SinglePicker */ postProps?: (info: { valueTexts: string[]; }) => Partial): readonly [(index?: number) => InputProps, (date: DateType) => string];