import { Reflection, ReflectionLink, NotIncludedReflection, BaseReflection } from './reflection'; export declare const ExcludedFlag: unique symbol; export declare const NotLinkable: unique symbol; export interface ExcludedReflection extends BaseReflection { [ExcludedFlag]?: boolean; [NotLinkable]?: boolean; } export declare function createLink(ref: Reflection): ReflectionLink | NotIncludedReflection; export declare function extractSummary(ref: Reflection): string | undefined; //# sourceMappingURL=utils.d.ts.map