import type { EventName } from "@lit/react"; import { CustomField as CustomFieldElement, type CustomFieldEventMap as _CustomFieldEventMap } from "@vaadin/custom-field/vaadin-custom-field.js"; import * as React from "react"; import { type WebComponentProps } from "../utils/createComponent.js"; export * from "@vaadin/custom-field/vaadin-custom-field.js"; export { CustomFieldElement, }; export type CustomFieldEventMap = Readonly<{ onChange: EventName<_CustomFieldEventMap["change"]>; onInvalidChanged: EventName<_CustomFieldEventMap["invalid-changed"]>; onValidated: EventName<_CustomFieldEventMap["validated"]>; onValueChanged: EventName<_CustomFieldEventMap["value-changed"]>; }>; export type CustomFieldProps = WebComponentProps; export declare const CustomField: (props: Partial; onInvalidChanged: EventName<_CustomFieldEventMap["invalid-changed"]>; onValidated: EventName<_CustomFieldEventMap["validated"]>; onValueChanged: EventName<_CustomFieldEventMap["value-changed"]>; }>>> & React.RefAttributes) => React.ReactElement | null; //# sourceMappingURL=CustomField.d.ts.map