import * as ts from "typescript"; import { LiteralType } from "../Type/LiteralType"; import { Context } from "../NodeParser"; export declare function isParameterOrMemberOfParameter(context: Context): boolean; export declare const isMemberOfFunctionParameter: (node: ts.Node | LiteralType, context: Context) => boolean;