import { AddressComponent } from '@formio/core'; import { BaseComponentContext } from './BaseComponentContext.js'; export type AddressContext = BaseComponentContext & { instance: { id: string; }; component: AddressComponent; self: { manualModeEnabled: boolean; manualMode: boolean; }; value: string; mode: { autocomplete: boolean | undefined; manual: boolean | undefined; }; inputAttributes: { [key: string]: string | undefined; }; ref: { searchInput: string; removeValueIcon: string; modeSwitcher: string; }; displayValue: string; disabled: boolean | undefined; children: string; nestedKey: string; };