import { z, type ZodRawShape, type ZodTypeAny } from "zod"; import type { ChannelConfigSchema, ChannelConfigUiHint } from "./types.plugin.js"; type ExtendableZodObject = ZodTypeAny & { extend: (shape: Record) => ZodTypeAny; }; export declare const AllowFromEntrySchema: z.ZodUnion; export declare const AllowFromListSchema: z.ZodOptional>>; export declare function buildNestedDmConfigSchema(extraShape?: TExtraShape): z.ZodOptional; policy: z.ZodOptional>; allowFrom: z.ZodOptional>>; }, z.core.$strip>>; export declare function buildCatchallMultiAccountChannelSchema(accountSchema: T): T; type BuildChannelConfigSchemaOptions = { uiHints?: Record; }; export declare function buildChannelConfigSchema(schema: ZodTypeAny, options?: BuildChannelConfigSchemaOptions): ChannelConfigSchema; export {};