import { z } from 'zod'; import { Cursor } from '../../../core/common/seek-page'; import { FlowStatus } from '../flow'; import { FlowVersionState } from '../flow-version'; export declare const ListFlowsRequest: z.ZodObject<{ folderId: z.ZodOptional; limit: z.ZodOptional>; cursor: z.ZodOptional; status: z.ZodPipe, z.ZodOptional>>>; projectId: z.ZodString; name: z.ZodOptional; agentExternalIds: z.ZodPipe, z.ZodOptional>>; versionState: z.ZodOptional>; connectionExternalIds: z.ZodPipe, z.ZodOptional>>; externalIds: z.ZodPipe, z.ZodOptional>>; }, z.core.$strip>; export type ListFlowsRequest = Omit, 'cursor'> & { cursor: Cursor | undefined; }; export declare const GetFlowQueryParamsRequest: z.ZodObject<{ versionId: z.ZodOptional; }, z.core.$strip>; export type GetFlowQueryParamsRequest = z.infer; export declare const ListFlowVersionRequest: z.ZodObject<{ limit: z.ZodOptional>; cursor: z.ZodOptional; }, z.core.$strip>; export type ListFlowVersionRequest = Omit, 'cursor'> & { cursor: Cursor | undefined; }; //# sourceMappingURL=list-flows-request.d.ts.map