import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * UI configurations for each item of the list */ export type DisplayableListItemUIConfig = { /** * show a "New" pill next to the item */ showNewIndicator?: boolean | undefined; }; /** @internal */ export declare const DisplayableListItemUIConfig$inboundSchema: z.ZodType; export declare function displayableListItemUIConfigFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=displayablelistitemuiconfig.d.ts.map