opt-table
Version:
A Responsive and Customizable Rich Table
15 lines (14 loc) • 679 B
TypeScript
import { DialogProps } from "@mui/material";
import { TransitionProps } from "@mui/material/transitions";
import React from "react";
import { options } from "./table/types";
declare const DeleteMenuModal: <T>({ props, title_component, onYesClick, options, }: {
title_component: React.ReactNode;
props: DialogProps;
options?: options<T> | undefined;
onYesClick: () => void;
}) => React.JSX.Element;
export default DeleteMenuModal;
export declare const UpTransition: (props: TransitionProps & {
children: React.ReactElement<any, any>;
} & React.RefAttributes<unknown>) => React.ReactElement<any, string | React.JSXElementConstructor<any>> | null;