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