import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdk-validation-error.js"; /** * Standard success response */ export type ProviderSuccess = { /** * Operation success status */ success: boolean; /** * Human-readable success message */ message?: string | undefined; }; /** @internal */ export declare const ProviderSuccess$inboundSchema: z.ZodMiniType; export declare function providerSuccessFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=provider-success.d.ts.map