import { DeclarationReflection, ParameterReflection, SignatureReflection } from 'typedoc'; export declare function formatContents(contents: string): string; export declare function escapeChars(str: string): string; export declare function memberSymbol(reflection: DeclarationReflection | ParameterReflection | SignatureReflection): "▸" | "Ƭ" | "▪" | "•"; export declare function spaces(length: number): string; export declare function stripComments(str: string): string; export declare function stripLineBreaks(str: string): string;