import { type ListFieldLayout, type ListLayout } from '@strapi/content-manager/strapi-admin';
import { type Modules, type UID } from '@strapi/strapi';
export interface AddPreviewColumnProps {
    displayedHeaders: ListFieldLayout[];
    layout: ListLayout;
}
declare const addPreviewColumn: ({ displayedHeaders, layout }: AddPreviewColumnProps) => {
    displayedHeaders: (ListFieldLayout | {
        label: {
            id: string;
            defaultMessage: string;
        };
        name: string;
        searchable: boolean;
        sortable: boolean;
        cellFormatter: (data: Modules.Documents.AnyDocument, _: any, { model }: {
            model: UID.ContentType;
        }) => import("react/jsx-runtime").JSX.Element;
    })[];
    layout: ListLayout;
};
export default addPreviewColumn;
