import { FlowRemoteElement } from './lib/FlowRemoteElement'; export type RemoteFormElementProps = { id?: string; action?: string | ((payload: FormData) => void | Promise); onSubmit?: (event: never) => void; } & Partial>; export declare class RemoteFormElement extends FlowRemoteElement { static get remoteEvents(): { submit: {}; }; static get remoteProperties(): { id: {}; method: {}; enctype: {}; action: {}; }; } declare global { interface HTMLElementTagNameMap { "flr-form": InstanceType; } }