import { Definition } from "../Schema/Definition"; import { SubTypeFormatter } from "../SubTypeFormatter"; import { BaseType } from "../Type/BaseType"; import { UnknownSymbolType } from "../Type/UnknownSymbolType"; import { Config } from "../Config"; export declare class UnknownSymbolTypeFormatter implements SubTypeFormatter { private config; constructor(config: Config); supportsType(type: UnknownSymbolType): boolean; getDefinition(type: UnknownSymbolType): Definition; getChildren(type: UnknownSymbolType): BaseType[]; }