/// <reference types="react" />
import type { GridCellParams, GridColDef } from '@mui/x-data-grid';
import type { ColumnBaseProps } from "../../../types";
export declare const imageColumnRenderCell: ({ alt }: ImageColumnExtraProps) => GridColDef['renderCell'];
export type ImageColumnExtraProps = {
    alt: (record: GridCellParams) => string;
};
export declare const ImageColumn: React.FC<ColumnBaseProps<ImageColumnExtraProps>>;
