import { PropType, PropParent } from '@structured-types/api'; import { DocumentationNode } from '../types'; export declare type PropsList = Record; export declare class PropLinks { private props; init(props: PropsList): void; getPropLink(key: string): PropType | undefined; propLink(prop: PropParent): DocumentationNode; }