import { ReactNode } from 'react'; export interface RowAction { id: string; label: string; icon?: ReactNode; variant?: "default" | "destructive"; onClick: (row: TData) => void; hidden?: (row: TData) => boolean; disabled?: (row: TData) => boolean; separator?: boolean; } interface RowActionsCellProps { row: TData; actions: RowAction[]; } export declare function RowActionsCell({ row, actions }: RowActionsCellProps): import("react").JSX.Element | null; export {}; //# sourceMappingURL=RowActionsCell.d.ts.map