import type { IActivityHandler, EmptyOutputs } from "../../IActivityHandler"; /** Inputs for the SendLayerToAttributeTable activity. */ export interface SendLayerToAttributeTableInputs { layer: __esri.Layer; } export declare class SendLayerToAttributeTable implements IActivityHandler { static readonly action = "gcx:wf:wab::SendLayerToAttributeTable"; static readonly suite = "gcx:wf:builtin"; execute(inputs: SendLayerToAttributeTableInputs): EmptyOutputs; }