UNPKG

@adyen/adyen-web

Version:

[![npm](https://img.shields.io/npm/v/@adyen/adyen-web.svg)](https://www.npmjs.com/package/@adyen/adyen-web)

28 lines (27 loc) 660 B
import { h } from 'preact'; import UIElement from '../UIElement'; import { SepaElementData } from './types'; /** * SepaElement */ declare class SepaElement extends UIElement { static type: string; protected static defaultProps: { showFormInstruction: boolean; }; constructor(props: any); /** * Formats props on construction time */ formatProps(props: any): any; /** * Formats the component data output */ formatData(): SepaElementData; /** * Returns whether the component state is valid or not */ get isValid(): boolean; render(): h.JSX.Element; } export default SepaElement;