import { Ekko } from "./ekko";
import { IImpactPayElementConfig } from "./types/impactpay-element-config";
export interface ElementsOptions {
    clientSecret: string;
}
export declare class EkkoElements {
    private ekko;
    private options;
    constructor(ekko: Ekko, options: ElementsOptions);
    createImpactPayPageTakeover(config: IImpactPayElementConfig): HTMLElement;
}
