import { Dictionary, Optional } from '@stoplight/types'; import { JSONSchema4TypeName } from 'json-schema'; import * as React from 'react'; import { JSONSchema4CombinerName } from '../../types'; export interface IType { type: JSONSchema4TypeName | JSONSchema4CombinerName | 'binary' | '$ref'; subtype: Optional | '$ref'; className?: string; title: Optional; } export declare const Type: React.FunctionComponent; interface ITypes { className?: string; type: Optional; subtype: Optional; title: Optional; } export declare const Types: React.FunctionComponent; export declare const PropertyTypeColors: Dictionary; export {};