import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CardSchemeDefinition = { /** * Always `card-scheme-definition`. */ type: "card-scheme-definition"; /** * The ID for the card scheme. */ id: string; /** * The icon for this card scheme. */ iconUrl: string; /** * The display name of this card scheme. */ displayName: string; }; /** @internal */ export declare const CardSchemeDefinition$inboundSchema: z.ZodType; export declare function cardSchemeDefinitionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=cardschemedefinition.d.ts.map