import React from 'react';
interface ColumnProps {
    columnKey: string;
    row: Record<string, React.ReactNode | string | number | boolean | null>;
    column: {
        key: string;
        width?: string;
    };
    icons?: Record<string, React.ComponentType<React.SVGProps<SVGSVGElement>>>;
}
export declare const Column: React.FC<ColumnProps>;
export {};
