import { type Field } from "@hostlink/light"; import { type LTableColumn } from "../components/L/Table.vue.js"; export type LightModelField = Omit & Field & { name?: string; field?: string | ((row: any) => any); }; export interface LightModel { name: string; fields: Record; dataPath?: string; } declare const _default: (model: LightModel) => () => void; export default _default;