import type { FlexBoxProps } from '@ariestools/sdk-react/flexbox'; import type { PropsWithChildren } from 'react'; import React from 'react'; /** Props for {@link WrappedContainer}. */ export interface WrappedContainerProps extends FlexBoxProps, PropsWithChildren { spacing?: number; } /** Flex column wrapper around a full-height MUI grid container. */ declare const WrappedContainer: { ({ ref, children, spacing, ...props }: WrappedContainerProps): React.JSX.Element; displayName: string; }; export { WrappedContainer }; //# sourceMappingURL=Container.d.ts.map