import { Definition } from "../Schema/Definition"; import { SubTypeFormatter } from "../SubTypeFormatter"; import { BaseType } from "../Type/BaseType"; import { StaticType } from "../Type/StaticType"; export declare class StaticNodeFormatter implements SubTypeFormatter { supportsType(type: StaticType): boolean; getDefinition(type: StaticType): Definition; getChildren(type: StaticType): BaseType[]; }