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;
