import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type DatasetPreview = { id: string; createdAt: Date; updatedAt: Date; deletedAt: Date | null; name: string; description: string; ownerId: string; workspaceId: string; }; /** @internal */ export declare const DatasetPreview$inboundSchema: z.ZodType; export declare function datasetPreviewFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=datasetpreview.d.ts.map