import { Container } from '@webprovisions/platform'; export type Callback = (settings: { [key: string]: any; }, data?: { [key: string]: any; }) => Promise | (string | void); export declare const createSubmitAdapter: (container: Container, clientName: string, fn: Callback) => Promise;