/** Strategy for selecting sheets from Excel documents. */ export declare const LegacyExtractionAdvancedOptionsExcelSheetSelectionStrategy: { readonly Intelligent: "intelligent"; readonly All: "all"; readonly First: "first"; readonly Last: "last"; }; export type LegacyExtractionAdvancedOptionsExcelSheetSelectionStrategy = (typeof LegacyExtractionAdvancedOptionsExcelSheetSelectionStrategy)[keyof typeof LegacyExtractionAdvancedOptionsExcelSheetSelectionStrategy] | string;