import type * as Extend from "../index"; export interface LegacyProvidedExtractionFieldResult { /** The unique identifier for this field */ id: string; value?: unknown; /** The type of the extraction field result */ type?: Extend.LegacyProvidedExtractionFieldResultType; /** A value between 0 and 1 indicating confidence in the extraction. Will be set to 1 if not provided. */ confidence?: number; /** The page number where this field was extracted from */ page?: number | null; }