UNPKG

@ui5/webcomponents-react

Version:

React Wrapper for UI5 Web Components and additional components

18 lines (17 loc) 721 B
import type { VariantItemPropTypes } from '../VariantItem/index.js'; interface ManageViewsTableRowsProps extends Partial<VariantItemPropTypes> { variantNames: string[]; handleRowChange: (e: Event, payload: 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.Element; export {};