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;
