import Installment from './models/installment'; import { SplitRuleResponse } from './models/split'; export interface SharersWithFixedFeeOptions { amount: number; client_recipient_id: string; installments: number; psp_installment: Installment; psp_anticipation_rate: number; ton_installment: Installment; ton_anticipation_rate: number; ton_recipient_id: string; } declare const sharersWithFixedFee: ({ amount, client_recipient_id, ton_recipient_id, installments, psp_installment, psp_anticipation_rate, ton_installment, ton_anticipation_rate, }: SharersWithFixedFeeOptions) => SplitRuleResponse | undefined; export default sharersWithFixedFee;