import * as SolKit from '@solana/kit';
import { SOLTxProvider } from '../sol';
export declare class SPLTxProvider extends SOLTxProvider {
    create(params: {
        recipients: Array<{
            address: string;
            amount: string;
            addressKeyPair?: SolKit.KeyPairSigner;
        }>;
        from: string;
        fee?: number;
        feeRate: number;
        txType?: 'legacy' | '0';
        category?: 'transfer' | 'createAccount';
        nonce?: string;
        nonceAddress?: string;
        blockHash?: string;
        blockHeight?: number;
        priorityFee?: number;
        computeUnits?: number;
        fromKeyPair?: SolKit.KeyPairSigner;
        space?: number;
        tokenAddress: string;
        fromAta: string;
        decimals: number;
    }): SolKit.Base64EncodedWireTransaction;
}
//# sourceMappingURL=index.d.ts.map