import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ImportMasterJsonResponseDto = { /** * Overall success status of the import operation */ success: boolean; /** * Human-readable message describing the import result */ message: string; /** * List of resource IDs that were successfully imported */ successful?: Array | undefined; /** * List of resource IDs that failed to import */ failed?: Array | undefined; }; /** @internal */ export declare const ImportMasterJsonResponseDto$inboundSchema: z.ZodType; export declare function importMasterJsonResponseDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=importmasterjsonresponsedto.d.ts.map