import type { IActivityHandler } from "../../IActivityHandler"; export interface RemoveApplicationDataInputs { key: string; visibility: "memory" | "application" | "global" | string; } export interface RemoveApplicationDataOutputs { /** @description Whether or not the specified key was removed. */ removed: boolean; } export declare class RemoveApplicationData implements IActivityHandler { static readonly action = "gcx:wf:app::RemoveApplicationData"; static readonly suite = "gcx:wf:builtin"; execute(inputs: RemoveApplicationDataInputs): Promise; protected getAppId(): string; private removeValueFromLocalStorage; }