import { z } from 'zod'; export declare enum SampleDataFileType { INPUT = "INPUT", OUTPUT = "OUTPUT" } export declare const DATA_TYPE_KEY_IN_FILE_METADATA = "dataType"; export declare enum SampleDataDataType { JSON = "JSON", STRING = "STRING" } export declare const SaveSampleDataRequest: z.ZodObject<{ stepName: z.ZodString; payload: z.ZodUnknown; type: z.ZodEnum; }, z.core.$strip>; export type SaveSampleDataRequest = z.infer; export declare const GetSampleDataRequest: z.ZodObject<{ flowId: z.ZodString; flowVersionId: z.ZodString; stepName: z.ZodString; projectId: z.ZodString; type: z.ZodEnum; }, z.core.$strip>; export type GetSampleDataRequest = z.infer; export declare const CreateStepRunRequestBody: z.ZodObject<{ projectId: z.ZodString; flowVersionId: z.ZodString; stepName: z.ZodString; }, z.core.$strip>; export type CreateStepRunRequestBody = z.infer; export declare const StepRunResponse: z.ZodObject<{ runId: z.ZodString; success: z.ZodBoolean; input: z.ZodUnknown; output: z.ZodUnknown; sampleDataFileId: z.ZodOptional; sampleDataInputFileId: z.ZodOptional; standardError: z.ZodString; standardOutput: z.ZodString; }, z.core.$strip>; export type StepRunResponse = z.infer; export declare const StepExecutionPath: z.ZodArray>; export type StepExecutionPath = z.infer; export declare const SampleDataSetting: z.ZodObject<{ sampleDataFileId: z.ZodOptional; sampleDataInputFileId: z.ZodOptional; lastTestDate: z.ZodOptional; }, z.core.$strip>; export type SampleDataSettings = z.infer; export declare const DEFAULT_SAMPLE_DATA_SETTINGS: SampleDataSettings; export declare const SaveSampleDataResponse: z.ZodObject<{ type: z.ZodEnum; id: z.ZodString; size: z.ZodOptional>; }, z.core.$strip>; export type SaveSampleDataResponse = z.infer; //# sourceMappingURL=index.d.ts.map