import type { Schema } from '@strapi/types';
interface CellValueProps {
    isIdColumn?: boolean;
    type: Schema.Attribute.Kind | 'custom';
    value: unknown;
}
declare const CellValue: ({ isIdColumn, type, value }: CellValueProps) => string;
export { CellValue };
export type { CellValueProps };
