import { AnyDesc, DescFile } from "../../descriptor-set.js"; export type JSDocBlock = { readonly kind: "es_jsdoc"; /** * @deprecated In a future release, we will make this property optional. */ text: string; indentation?: string; /** * @deprecated In a future release, we will remove this method. */ toString(): string; }; export declare function createJsDocBlock(textOrDesc: string | Exclude, indentation?: string): JSDocBlock;