import { PropType } from '@structured-types/api'; import { DocumentationNode } from '../types'; import { DocumentationConfig } from '../DocumentationConfig'; export declare class PropTypeNodes { private config; private cache; init(config: DocumentationConfig): void; extractNamedType(prop: PropType): DocumentationNode[]; extractType(prop: PropType, named?: boolean): DocumentationNode[]; resolvedProp(prop: PropType): PropType; private collapsibleType; private isLinkedProp; private getType; private propToHash; private extractTypeNode; }