import { IPaymentRequest, ServiceParameter } from '../../../Models';
export interface IPay extends IPaymentRequest {
bic?: string;
costumerIBAN?: string;
}
export declare class Pay extends ServiceParameter {
set bic(value: string);
set costumerIBAN(value: string);
}