import { z } from 'zod'; export declare const getComponentDocSchema: { slug: z.ZodString; }; export declare function getComponentDoc(args: { slug: string; }): { content: { type: "text"; text: string; }[]; isError: boolean; } | { content: { type: "text"; text: string; }[]; isError?: undefined; };