import type { View, ViewConfig } from "@perspective-dev/client"; import type { CellConfigResult } from "./types.js"; interface ModelWithViewAndConfig { _view: View; _config: ViewConfig; } export default function getCellConfig({ _view, _config }: ModelWithViewAndConfig, row_idx: number, col_idx: number): Promise; export {};