export declare const useInputModal: (args?: { onSubmit?: (val: string) => void | Promise; onCancel?: () => void | Promise; }) => { id: string; submitEvent: string; cancelEvent: string; modalRef: import("vue").Ref; showModal: () => void; hideModal: () => void; };