//#region extensions/crypto/src/commands/fiat-command.d.ts /** * Fiat commands — view fiat rail status, providers, and recent transfers. * * /fiat — Show configured fiat providers and recent transfer summary. */ declare const fiatCommand: { name: string; description: string; acceptsArgs: boolean; requireAuth: boolean; handler: () => Promise<{ text: string; }>; }; //#endregion export { fiatCommand }; //# sourceMappingURL=fiat-command.d.mts.map