import { Context } from "../imports/Context"; import { Function } from "../imports/Function"; import { ScriptableDataStream } from "./ScriptableDataStream"; import { GlideDateTime } from "../types/GlideDateTime"; type FlowObjectType = {}; export declare class FlowRunnerResult { constructor( cx?: Context, args?: any[], ctorObj?: Function, inNewExpr?: boolean ); debug(): string; getContextId(): string; getDataStream(): ScriptableDataStream; getDate(): GlideDateTime; getDomainId(): string; getFlowObjectName(): string; getFlowObjectType(): FlowObjectType; getOutputs(): Record; }