import type { IActivityHandler } from "../../IActivityHandler"; /** Defines inputs to the ConvertXlsxToDataSet activity. */ export interface ConvertXlsxToDataSetInputs { xlsx: number[]; password?: string; } /** Defines outputs from the ConvertXlsxToDataSet activity. */ export interface ConvertXlsxToDataSetOutputs { /** @description A DataSet representing the worksheets in the Microsoft Excel workbook. Each worksheet in the workbook will be a table in the DataSet. */ result: object; } export declare class ConvertXlsxToDataSet implements IActivityHandler { static readonly action = "gcx:wf:xlsx::ConvertXlsxToDataSet"; static readonly suite = "gcx:wf:builtin"; execute(inputs: ConvertXlsxToDataSetInputs): ConvertXlsxToDataSetOutputs; }