import type * as Extend from "../index"; /** * The output of the edit run. * * **Availability:** Present when `status` is `"PROCESSED"`. */ export interface EditRunOutput { /** Information about the edited output file. */ editedFile: Extend.EditRunOutputEditedFile; /** The field values that were filled into the document. Keys correspond to the property names in the schema. Will not be present if no values were filled. */ filledValues?: Record; }