/// import ts from "typescript"; import { NodeProps } from "./NodeProps.js"; /** * Properties for the {@link FormatDeclaration} component. * @group Components */ export type FormatDeclarationProps = NodeProps; /** * Format a declaration in code. The TypeScript AST is parsed and a code sample * is built dynamically, so that contextual information such as links to other * documentation can be provided. If an unsupported AST node is encountered, * then the raw text of the node will be output with an error underline in the * code sample. * @group Components */ export declare function FormatDeclaration({ collection, node, }: FormatDeclarationProps): JSX.Element; //# sourceMappingURL=FormatDeclaration.d.ts.map