import { ButtonComponent } from '@formio/core'; import { BaseComponentContext } from './BaseComponentContext.js'; export type ButtonContext = BaseComponentContext & { component: ButtonComponent; instance: { id: string; }; input: { attr: { [key: string]: string | undefined; }; content: string; type: string; }; };