import { GetPath, Items, Item, Column } from './types'; interface DefaultComputeSource { externalValues?: unknown[]; values?: unknown[]; valuePath?: GetPath; } export declare const valuesFrom: (data: Items, valuePath: GetPath) => any[] | undefined; export declare const defaultComputeSource: ({ externalValues, values, valuePath }: DefaultComputeSource, data: Items) => any[] | undefined; export declare const onItemChange: (host: HTMLElement, column: Column, item: Item, value: unknown) => void; export {}; //# sourceMappingURL=utils-data.d.ts.map