import { QWidget, QWidgetSignals } from "./QWidget"; import { NativeElement } from "../core/Component"; import { QDateTimeEdit } from "./QDateTimeEdit"; /** > Creates a widget to edit dates with spin box layout. WIP! * **This class is a JS wrapper around Qt's [QDateEdit class](https://doc.qt.io/qt-5/qdateedit.html)** A `QDateEdit` provides a widget for editing dates based on the QDateTimeEdit widget. ### Example ```javascript import { QDateEdit } from "@vixen-js/core"; const dateEdit = new QDateEdit(); // must be implemented ``` */ export declare class QDateEdit extends QDateTimeEdit { constructor(arg?: QWidget | NativeElement); }