import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { StepIssuesDto } from "./stepissuesdto.js"; export type StepListResponseDto = { /** * Slug of the step */ slug: string; /** * Type of the step */ type: string; /** * Issues associated with the step */ issues?: StepIssuesDto | undefined; }; /** @internal */ export declare const StepListResponseDto$inboundSchema: z.ZodType; export declare function stepListResponseDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=steplistresponsedto.d.ts.map