import { PaymentFlow } from './PaymentFlow'; export declare type EpikConfig = { epikId?: string; apiKey?: string; endpoint?: 'prod' | 'stage'; apiUrl?: string; proxyUrl?: string; preferredPaymentFlows?: PaymentFlow[]; creditCardIframeUrl?: string; successUrl?: string; errorUrl?: string; cancelUrl?: string; testMode?: boolean; mobileMode?: boolean; language?: string; reqtype?: 'CAA'; furtherRnwInteraction?: boolean; returnParameters?: boolean; creditCardIframeTargetSelector?: string; paymentIframeTargetSelector?: string; }; export declare function createEpikConfig(epikId: string, config?: EpikConfig, win?: Window): EpikConfig;