import { FetchBulkSuggestion, FetchWalletNfts, ProposeLoan, ProposeLoans } from './types';
declare type CreateLoansService = (props: {
    apiDomain: string;
    programPublicKey: string;
    adminPublicKey: string;
}) => {
    fetchWalletNfts: FetchWalletNfts;
    fetchBulkSuggestion: FetchBulkSuggestion;
    proposeLoans: ProposeLoans;
    proposeLoan: ProposeLoan;
};
export declare const createLoansService: CreateLoansService;
export {};
