import { BaseComponentContext } from './BaseComponentContext.js'; import { InputComponent } from '@formio/core/experimental'; export type InputContext = BaseComponentContext & { input: { type: string; ref?: string; content: string; attr: Record; }; instance: { id: string; getFieldsetLegendIds?: () => string; }; component: InputComponent; value: string; prefix?: string | HTMLElement; suffix?: string | HTMLElement; hasValueMaskInput?: boolean | undefined; options: { floatingLabels?: boolean | undefined; }; };