import { E_PaymentIntegrationType, E_PaymentGateway, E_PaymentMethod } from '../backend/enums';
export type T_PaymentGatewayWithRedirection = E_PaymentGateway.Dibsy | (typeof E_PaymentGateway)['My Fatoorah'] | E_PaymentGateway.TAP;
export interface I_CommonPaymentConfiguration {
    paymentGatewayType: E_PaymentGateway;
    credential: string;
    supportReceivingCardDetails: boolean;
    configuration: {
        dibsySecretApiKey?: string;
        tapSecretApiKey?: string;
        integrationType: E_PaymentIntegrationType;
    };
}
export interface I_AdminPanelPaymentMethodAssociatedComponentsProps {
    associatedPaymentMehtod: E_PaymentMethod;
}
//# sourceMappingURL=index.d.ts.map