@adyen/adyen-web
Version:

14 lines (13 loc) • 426 B
TypeScript
import { h } from 'preact';
import UIElement from '../UIElement';
import { OxxoElementData } from './types';
import { UIElementProps } from '../types';
export declare class OxxoElement extends UIElement {
static type: string;
protected static defaultProps: UIElementProps;
get isValid(): boolean;
formatData(): OxxoElementData;
private handleRef;
render(): h.JSX.Element;
}
export default OxxoElement;