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