/** * This file was auto-generated by Fern from our API Definition. */ /** * [Experimental] The strategy to use for selecting the match using visual analysis. Can be 'auto', 'first' or 'bestMatch'. Defaults to 'auto'. Use 'auto' to let the system decide the best strategy. Use 'first' to select the first visual element that matches the element description. This will favor results that appear higher on the page in the event of multiple matches. Use 'bestMatch' to analyze the complete page and apply judgement to select the best candidate from all potential matches. */ export type VisualAnalysisConfigResultSelectionStrategy = "first" | "bestMatch" | "auto"; export declare const VisualAnalysisConfigResultSelectionStrategy: { readonly First: "first"; readonly BestMatch: "bestMatch"; readonly Auto: "auto"; };