UNPKG

@cmk/fe_utils

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