import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type BrandColor = { /** * A CSS hex color representing an accent color. */ accent: string; }; /** @internal */ export declare const BrandColor$inboundSchema: z.ZodType; /** @internal */ export type BrandColor$Outbound = { accent: string; }; /** @internal */ export declare const BrandColor$outboundSchema: z.ZodType; export declare function brandColorToJSON(brandColor: BrandColor): string; export declare function brandColorFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=brandcolor.d.ts.map