import React from "react"; export interface DataTableRowAction { labelKey: string; icon?: React.ElementType; onClick: (row: T) => void; className?: string; variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" | "link"; visible?: (row: T) => boolean; disabled?: (row: T) => boolean; overflow?: boolean; } //# sourceMappingURL=DataTableRowAction.d.ts.map