import React from "react"; export interface DataTableBulkAction { labelKey: string; icon?: React.ElementType; onClick: (selectedRows: T[], clearSelection: () => void) => void; variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" | "link"; } //# sourceMappingURL=DataTableBulkAction.d.ts.map