UNPKG

@ui5/webcomponents-react

Version:

React Wrapper for UI5 Web Components and additional components

19 lines (18 loc) 762 B
import type { VariantItemPropTypes } from './VariantItem.js'; interface ManageViewsTableRowsProps extends Partial<VariantItemPropTypes> { variantNames: string[]; handleRowChange: (e: Event, payload: any) => void; handleDelete: (e: any) => void; defaultView: string; setDefaultView: (view: string) => void; showShare: boolean; showApplyAutomatically: boolean; showSetAsDefault: boolean; showCreatedBy: boolean; showOnlyFavorites?: boolean; changedVariantNames: Map<string, any>; setChangedVariantNames: (varNames: any) => void; setInvalidVariants: (invalidVars: any) => void; } export declare const ManageViewsTableRows: (props: ManageViewsTableRowsProps) => import("react/jsx-runtime").JSX.Element; export {};