import { Tool } from "./base.js"; declare class DadJokeAPI extends Tool { name: string; description: string; constructor(); call(input: string): Promise; } export { DadJokeAPI };