import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * A grouping for multiple PropertyDefinition. Grouped properties will be displayed together in the UI. */ export type PropertyGroup = { /** * The unique identifier of the group. */ name?: string | undefined; /** * The user-friendly group label to display. */ displayLabel?: string | undefined; }; /** @internal */ export declare const PropertyGroup$inboundSchema: z.ZodType; /** @internal */ export type PropertyGroup$Outbound = { name?: string | undefined; displayLabel?: string | undefined; }; /** @internal */ export declare const PropertyGroup$outboundSchema: z.ZodType; export declare function propertyGroupToJSON(propertyGroup: PropertyGroup): string; export declare function propertyGroupFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=propertygroup.d.ts.map