import * as z from "zod/v3";
import { Result as SafeParseResult } from "../../types/fp.js";
import { SDKValidationError } from "../errors/sdkvalidationerror.js";
export type BrandLogos = {
    primary?: string | null | undefined;
    secondary?: string | null | undefined;
    email?: string | null | undefined;
};
/** @internal */
export declare const BrandLogos$inboundSchema: z.ZodType<BrandLogos, z.ZodTypeDef, unknown>;
export declare function brandLogosFromJSON(jsonString: string): SafeParseResult<BrandLogos, SDKValidationError>;
//# sourceMappingURL=brandlogos.d.ts.map