UNPKG

@etsoo/materialui

Version:

TypeScript Material-UI Implementation

20 lines (19 loc) 545 B
import { DataTableProps } from "./DataTable"; import { ListType1 } from "@etsoo/shared"; /** * Culture table props */ export type CultureDataTableProps = Omit<DataTableProps, "columns"> & { cultures: ListType1[]; cultureLabel?: string; editable?: boolean; titleLabel?: string; hasDescription?: boolean; descriptionLabel?: string; }; /** * Culture DataTable * @param props Props * @returns Component */ export declare function CultureDataTable(props: CultureDataTableProps): import("react/jsx-runtime").JSX.Element;