import type { IActivityHandler } from "../../IActivityHandler"; export interface ReadFileBytesInputs { path: string; } /** Defines outputs from the ReadFileBytes activity. */ export interface ReadFileBytesOutputs { /** @description The byte content of the file. */ bytes: number[]; } export declare class ReadFileBytes implements IActivityHandler { static readonly action = "gcx:wf:server::ReadFileBytes"; static readonly suite = "gcx:wf:builtin"; execute(inputs: ReadFileBytesInputs): ReadFileBytesOutputs; }