import React from 'react'; import type { ReactNode } from 'react'; export type DataTableActionProps = { label: string; children: ReactNode; color?: 'primary' | 'secondary' | 'inherit' | 'default'; onClick(): void; }; export declare const DataTableAction: ({ label, children, color, onClick }: DataTableActionProps) => React.JSX.Element;