import type * as Extend from "../../index"; /** * @example * { * file: { * url: "https://example.com/form.pdf" * }, * config: { * instructions: "Fill out the form with the provided data", * advancedOptions: { * flattenPdf: true * } * } * } */ export interface EditRequest { /** The file to be edited. Files can be provided as a URL or an Extend file ID. */ file: Extend.EditRequestFile; config?: Extend.EditConfig; }