UNPKG

@cmk/fe_utils

Version:
9 lines (7 loc) 327 B
import { ReactNode } from 'react'; import { CommonComponentPropertys } from '../../componentProperty'; export type GridWrapperProps = CommonComponentPropertys & { children?: ReactNode; rootInjection: ReactNode; }; export declare const GridWrapper: (props: GridWrapperProps) => import("react/jsx-runtime").JSX.Element;