import IssuerListContainer from '../helpers/IssuerListContainer';
declare class WalletINElement extends IssuerListContainer {
    static type: string;
    formatProps(props: any): any;
    /**
     * Formats the component data output
     */
    formatData(): {
        browserInfo: import("../../types").BrowserInfo;
        paymentMethod: {
            type: string;
            issuer: string;
        };
    };
    get browserInfo(): import("../../types").BrowserInfo;
}
export default WalletINElement;
