import type * as Pinnacle from "../index.mjs"; /** * Snapshot of a single form field paired with the value the recipient submitted. */ export interface FormSubmittedField { /** Programmatic key of the field from the form definition. */ key: string; /** Label as shown to the recipient when they filled out the form. */ label: string; /** The field type from the form definition (e.g. `text`, `select`, `checkbox`). */ type: string; /** The value submitted for this field. */ value: Pinnacle.FormSubmissionAnswer | null; }