/// import ts from "typescript"; /** * Properties for the {@link SymbolIcon} component. * * @group Components */ export interface SymbolIconProps { node: ts.Node; noColor?: boolean; } /** * Render an icon to represent the given {@link ts.Node}. * * @group Components */ export declare function SymbolIcon({ node, noColor }: SymbolIconProps): JSX.Element; //# sourceMappingURL=SymbolIcon.d.ts.map