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