goobs-frontend
Version:
A comprehensive React-based libary for building modern web applications
14 lines • 605 B
TypeScript
import { DataGridStyles } from '../../../theme';
interface ManageRowProps {
handleClose?: () => void;
selectedRows?: string[];
onDuplicate?: () => void;
onDelete?: () => void;
onManage?: () => void;
onShow?: () => void;
/** Comprehensive styling options including theme, custom colors, and layout properties. */
styles?: DataGridStyles;
}
declare function ManageRow({ handleClose, selectedRows, onDuplicate, onDelete, onManage, onShow, styles, }: ManageRowProps): import("react/jsx-runtime").JSX.Element | null;
export default ManageRow;
//# sourceMappingURL=index.d.ts.map