import { type Result } from '@overture-stack/lectern-dictionary'; import { z as zod } from 'zod'; declare const dictionarySummarySchema: zod.ZodObject<{ _id: zod.ZodString; name: zod.ZodString; description: zod.ZodOptional; version: zod.ZodString; createdAt: zod.ZodDate; }, "strip", zod.ZodTypeAny, { _id: string; createdAt: Date; name: string; version: string; description?: string | undefined; }, { _id: string; createdAt: Date; name: string; version: string; description?: string | undefined; }>; export type DictionarySummary = zod.infer; /** * Fetches a list of dictionaries available in the Lectern server. * * You can optionally filter the dictionary list to only the dictionaries matching a specific name. * @param options * @returns */ export declare const listDictionaries: (lecternHost: string, options?: { name?: string; }) => Promise>; export {};