import * as z from "zod/v3";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
/**
 * Control information and metadata for the response.
 */
export type TriggerWorkflowSuccess = {
    /**
     * A unique identifier for this specific instance of the workflow. This UUID
     *
     * @remarks
     * is used to reference the running instance in other API calls (e.g., to
     * retrieve its status or terminate the instance).
     * Example: '1a46ccde-9db4-42d6-94fa-0ddd07a3d2ff'
     */
    instanceId: string;
    /**
     * A fully-qualified URL that can be used to access or interact with this
     *
     * @remarks
     * workflow instance while it is running. This URL may provide access to
     * additional details, actions, or logs related to the workflow execution.
     */
    instanceUrl?: string | undefined;
    /**
     * The maximum number of items that can be returned in a single page.
     */
    pageLimit: number | null;
    /**
     * Unique identifier for the request, useful for tracking and debugging.
     */
    requestId: string | null;
    /**
     * The timestamp indicating when the response was generated.
     */
    responseTimestamp: Date | null;
    /**
     * The duration of time, in milliseconds, that the server took to process and respond
     *
     * @remarks
     * to the request. This is measured from the time the server received the request
     * until the time the response was sent.
     */
    responseDurationMs: number | null;
};
/** @internal */
export declare const TriggerWorkflowSuccess$inboundSchema: z.ZodType<TriggerWorkflowSuccess, z.ZodTypeDef, unknown>;
export declare function triggerWorkflowSuccessFromJSON(jsonString: string): SafeParseResult<TriggerWorkflowSuccess, SDKValidationError>;
//# sourceMappingURL=triggerworkflowsuccess.d.ts.map