import { ConfigurationService } from '../../config/configuration.service';
export declare class ZarinpalService {
    private config;
    private axios;
    private redirectUrl;
    constructor(config: ConfigurationService);
    paymentRequest(amount: any, callbackURL: any, description?: string, email?: string, mobile?: string): Promise<{
        code: any;
        message: string;
        authority: any;
        url: string;
    }>;
    paymentVerification(authority: any, amount: any): Promise<{
        code: any;
        message: string;
        referenceNumber: any;
    }>;
}
