import type { CellValue } from '../../types'; import type { CellProps } from '../Cell'; type UseLogicParams> = CellProps; export declare const useLogic: >({ row, cell, emptyCellValue, startAdornment, }: UseLogicParams) => { formattedValue: unknown; hasStartAdornment: boolean; }; export {};