import { ConfigValue } from '../config/config-value.type';
export declare type CellValue = undefined | null | boolean | string | number | bigint;
export declare type CellValueOrValueWithOptions = CellValue | ({
    value: CellValue;
} & ConfigValue);
