/// import ts from "typescript"; import { DeclarationCollection } from "../core/DeclarationCollection"; /** * Properties for the {@link UnknownCode} component. * @group Components */ export interface UnknownCodeProps { className?: string; collection: DeclarationCollection; node: ts.Node; word?: boolean; } /** * Formats an unknown AST node in code. This shows the underlying text content * of the node, with a blue wiggly underline in the default theme. * @group Components */ export declare function UnknownCode({ className, collection, node, word, }: UnknownCodeProps): JSX.Element; //# sourceMappingURL=UnknownCode.d.ts.map