export interface IPaymentMethod {
    id?: number;
    trash?: number;
    name: string;
    type: string;
    description: string;
    gateway: string;
    success_redirect_url: string;
    failure_redirect_url: string;
    pending_redirect_url: string;
    global: number;
    sort_weight: number;
    icon_class: string;
    notify_url: string;
    _links?: any;
    _language?: any;
    _images?: {
        logo?: string;
        icon?: string;
    };
}
export interface IPaymentMethodsQueryOptions {
    addFunds?: boolean;
    purchaseId?: number;
    images?: boolean;
    customerProfileId?: number;
}
//# sourceMappingURL=billia-sdk-payment.types.d.ts.map