import React from 'react';
interface ActionGroupColumnProps {
    columnKey: string;
    row: Record<string, React.ReactNode | string | number | boolean | null>;
    onRowAction: (action: string, rowId: number | string, url?: string, columnKey?: string) => void;
    t: (key: string) => string;
    icons?: Record<string, React.ComponentType<React.SVGProps<SVGSVGElement>>>;
}
export declare const ActionGroupColumn: React.FC<ActionGroupColumnProps>;
export {};
