import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { BrandColor, BrandColor$Outbound } from "./brandcolor.js"; /** * Brand colors for light and dark modes. */ export type BrandColors = { dark: BrandColor; light: BrandColor; }; /** @internal */ export declare const BrandColors$inboundSchema: z.ZodType; /** @internal */ export type BrandColors$Outbound = { dark: BrandColor$Outbound; light: BrandColor$Outbound; }; /** @internal */ export declare const BrandColors$outboundSchema: z.ZodType; export declare function brandColorsToJSON(brandColors: BrandColors): string; export declare function brandColorsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=brandcolors.d.ts.map