import { z } from 'zod'; export declare const listComponentsSchema: { kind: z.ZodDefault>; domain: z.ZodDefault>; }; export declare function listComponents(args: { domain: string; kind: string; }): { content: { type: "text"; text: string; }[]; };