import { Context, MethodLogs } from '~server/data/interfaces'; declare const inputCall: (input: T, context: Context, call: (input: T) => Promise, logs: MethodLogs) => Promise<{ status: boolean; }>; export default inputCall;