import type { PbEditorElement } from "../../../types"; import { ElementInputBinding } from "../.."; export declare const useInputBinding: (element: PbEditorElement, inputName: string) => { binding: ElementInputBinding | undefined; onChange: (value: unknown) => Promise; };