import { QyuBase, type QyuInputOptions, type JobAddInput } from './QyuBase.js'; export { QyuInvokable as default, type QyuInputOptions }; declare const QyuInvokable: { new (opts?: QyuInputOptions): Qyu; }; type Qyu = QyuBase & { (input: JobAddInput): Promise; [] | readonly []>(input: T): Promise<{ [K in keyof T]: T[K] extends JobAddInput ? RetVal : never; }>; };