import { type ListLayout } from '@strapi/content-manager/strapi-admin';
import { type UID } from '@strapi/strapi';
export interface ListViewColumnProps {
    data: any;
    layout: ListLayout;
    model: UID.ContentType;
}
declare const ListViewColumn: ({ data, layout, model }: ListViewColumnProps) => import("react/jsx-runtime").JSX.Element;
export default ListViewColumn;
