import { a as TObject, s as TString } from "../../helpers-DutyHbVD.mjs"; import { t as TUnsafe } from "../../unsafe-C_mX8nG4.mjs"; import { t as TOptional } from "../../optional-Bis1WTKK.mjs"; //#region extensions/crypto/src/tools/clawnch-fees.d.ts /** * Clawnch Fees Tool — check and claim LP trading fees * * Clawnch-launched tokens earn 1% LP fees on every swap. * 80% goes to the deployer, 20% to the platform. */ declare function createClawnchFeesTool(): { name: string; label: string; ownerOnly: boolean; description: string; parameters: TObject<{ action: TUnsafe<"check" | "claim" | "claim_all">; token: TOptional; }>; execute: (_toolCallId: string, args: unknown) => Promise<{ content: Array<{ type: "text"; text: string; }>; details: unknown; }>; }; //#endregion export { createClawnchFeesTool }; //# sourceMappingURL=clawnch-fees.d.mts.map