import type { IActivityHandler } from "../../IActivityHandler"; export interface FileExistsInputs { path: string; } export interface FileExistsOutputs { /** @description Whether the file exists on the server. */ exists: boolean; } export declare class FileExists implements IActivityHandler { static readonly action = "gcx:wf:server::FileExists"; static readonly suite = "gcx:wf:builtin"; execute(inputs: FileExistsInputs): FileExistsOutputs; }