import type { CellValue } from '../../types'; import { type BodyProps } from '../Body'; type UseLogicParams> = BodyProps; export declare const useLogic: >({ isLoading, isError, rows, }: UseLogicParams) => { isNoData: boolean; contentStateProps: { isLoading: boolean | undefined; isError: boolean | undefined; }; }; export {};