import { ConfigService } from '@nestjs/config';
import { List, Method } from '@mollie/api-client';
export declare class MethodsService {
    private configService;
    constructor(configService: ConfigService);
    private readonly mollieClient;
    getMethods(): Promise<List<Method>>;
    getIssuersForMethod(method: string): Promise<Method>;
}
