import { GraphLike } from "../.."; export default class API { graph: GraphLike; target: string; constructor(graph: GraphLike); getDestinationFilename(target: string): string; getIkImport(target: string): string; touchpointFunctionName(touchpoint: string): string; touchpointInputs2(touchpoint: string): { varStr: any; typeStr: any; }[]; touchpointOutputs2(touchpoint: string): { fromStr: any; varStr: any; }[]; touchpointIsAsync(touchpoint: string): boolean; touchpointOutputExpectOne(touchpoint: string): boolean; getHandlesPattern(target: string): string; touchpointOutputWithType(touchpoint: string): string; listHandlers(): string[]; handlerQuery(handler: string): string; }