export interface JsDoc { description?: string; tags?: { [key: string]: string; }; } export declare const extractJsdoc: (jsDocs: any[]) => JsDoc | undefined;