import { Type } from "typebox"; //#region src/agents/schema/string-enum.d.ts type StringEnumOptions = { description?: string; title?: string; default?: T[number]; deprecated?: boolean; }; declare function stringEnum(values: T, options?: StringEnumOptions): Type.TUnsafe; declare function optionalStringEnum(values: T, options?: StringEnumOptions): Type.TOptional>; //#endregion //#region src/agents/schema/typebox.d.ts declare function channelTargetSchema(options?: { description?: string; }): Type.TString; declare function channelTargetsSchema(options?: { description?: string; }): Type.TArray; //#endregion export { stringEnum as i, channelTargetsSchema as n, optionalStringEnum as r, channelTargetSchema as t };