import { ASTNode, Chunk, ChunkType } from '../types'; import { BaseExtractor } from './base-extractor'; /** * Extracts type alias declarations */ export declare class TypeAliasExtractor extends BaseExtractor { canHandle(node: ASTNode): boolean; getChunkType(): ChunkType; extract(node: ASTNode, sourceCode: string, filePath: string, parentQualifiedName?: string): Chunk[]; private isExported; } //# sourceMappingURL=type-alias-extractor.d.ts.map