export declare const SIMPLE_AMOUNT_TEMPLATE = "Respond with a JSON object containing {{operation}} information.\nExtract the {{operation}} details from all recent messages.\n\nThe response must include:\n- bammAddress: The BAMM pool address\n- amount: The amount to {{operation}} in normal decimal form (e.g., \"10\" for 10 tokens)\n- error: An error message if valid parameters cannot be determined (optional)\n\nExample response:\n```json\n{\n \"bammAddress\": \"0x1234567890123456789012345678901234567890\",\n \"amount\": \"1000\"\n}\n```\n```json\n{\n \"bammAddress\": \"\",\n \"amount\": \"\",\n \"error\": \"Required fields missing\"\n}\n```\n\n{{recentMessages}}\nExtract the {{operation}} information from all recent messages.\nRespond with a JSON markdown block containing bammAddress and amount."; export declare const TOKEN_OPERATION_TEMPLATE = "Respond with a JSON object containing {{operation}} information.\nExtract the {{operation}} details from all recent messages.\n\nThe response must include:\n- bammAddress: The BAMM pool address\n- {{tokenType}}: The address of the token (optional)\n- {{tokenType}}Symbol: The symbol of the token (optional)\n- amount: The amount to {{operation}} in normal decimal form (e.g., \"10\" for 10 tokens)\n- error: An error message if valid parameters cannot be determined (optional)\n\nIMPORTANT: Either the {{tokenType}} or {{tokenType}}Symbol must be provided.\n\nExample response:\n```json\n{\n \"bammAddress\": \"0x1234567890123456789012345678901234567890\",\n \"{{tokenType}}\": \"0xabcdefabcdefabcdefabcdefabcdefabcdefabcd\",\n \"{{tokenType}}Symbol\": null,\n \"amount\": \"1000\"\n}\n```\n```json\n{\n \"bammAddress\": \"0x1234567890123456789012345678901234567890\",\n \"{{tokenType}}\": null,\n \"{{tokenType}}Symbol\": \"USDC\",\n \"amount\": \"1000\"\n}\n```\n```json\n{\n \"bammAddress\": \"\",\n \"{{tokenType}}\": \"\",\n \"{{tokenType}}Symbol\": \"\",\n \"amount\": \"\",\n \"error\": \"Required fields missing\"\n}\n```\n\n{{recentMessages}}\nExtract the {{operation}} information from all recent messages.\nRespond with a JSON markdown block containing bammAddress, {{tokenType}}, and amount."; export declare const LEND_TEMPLATE: string; export declare const WITHDRAW_TEMPLATE: string; export declare const BORROW_TEMPLATE: string; export declare const REPAY_TEMPLATE: string; export declare const ADD_COLLATERAL_TEMPLATE: string; export declare const REMOVE_COLLATERAL_TEMPLATE: string;