@adyen/adyen-web
Version:

17 lines (16 loc) • 417 B
TypeScript
import { h } from 'preact';
import UIElement from '../UIElement';
export declare class DokuElement extends UIElement {
static type: string;
protected static defaultProps: {
showFormInstruction: boolean;
};
get isValid(): boolean;
/**
* Formats the component data output
*/
formatData(): any;
get icon(): string;
render(): h.JSX.Element;
}
export default DokuElement;