import { NativeViewElementNode } from "svelte-native/dom";
import { RadDataForm, EntityProperty } from 'nativescript-ui-dataform';
export default class RadDataFormElement extends NativeViewElementNode<RadDataForm> {
    constructor();
    getPropertyByName(prop: string): EntityProperty;
    notifyValidated(prop: string, validated: boolean): void;
    commitAll(): void;
    validateAll(): Promise<Boolean>;
    static register(): void;
}


import '../svelte-native-jsx-nativescript-ui-dataform'
