import { Node } from './node'; export declare const handleArrayType: (property: any, path: string) => Node; export declare const handleTupleType: (property: any, path: string) => Node; export declare const handleLiteralType: (property: any, path: string) => Node; export declare const handleInterfaceDeclaration: (property: any, path: string) => Node; export declare const handleTypeReference: (property: any, path: string) => Node; export declare const handleUnionType: (property: any, path: string) => Node; /** * A literal inline type. This is typically a nested type * @param property * @returns */ export declare const handleTypeLiteral: (property: any, path: string) => Node; export declare const handleStringKeyword: (property: any, path: string) => Node; export declare const handleBooleanKeyword: (property: any, path: string) => Node; export declare const handleNumberKeyword: (property: any, path: string) => Node;