import { ReverseResolver } from '@code-to-json/utils-ts'; import * as ts from 'typescript'; import { WalkerOptions } from './options'; export default class WalkerConfig { pathNormalizer: ReverseResolver; protected opts: WalkerOptions; constructor(opts: Partial); shouldIncludeSourceFile(sf: ts.SourceFile): boolean; shouldSerializeSymbolDetails(sym?: ts.Symbol): boolean; shouldSerializeTypeDetails(type: ts.Type, symbol?: ts.Symbol | undefined): boolean; shouldSerializeSourceFile(sf: ts.SourceFile): boolean; } //# sourceMappingURL=config.d.ts.map