import type { DataViewModel, GetDataFromDataViewModel } from './data-view.js'; export type ViewConvertFunction = (data: GetDataFromDataViewModel) => Partial>; export type ViewConvertConfig = { from: string; to: string; convert: ViewConvertFunction; }; export declare const createViewConvert: (from: From, to: To, convert: ViewConvertFunction) => ViewConvertConfig; //# sourceMappingURL=convert.d.ts.map